2025-06-17 17:33:31 +08:00

18 lines
321 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WinUINotes.Model
{
public class Note
{
public string Content { get; set; }
public long UserId { get; set; }
public DateTime CreateTime { get; set; }
}
}