InkForge/shared/InkForge.Data/Notes.cs

18 lines
372 B
C#
Raw Normal View History

2024-04-05 12:31:34 +02:00
namespace InkForge.Data
{
public class Note
{
public DateTimeOffset Created { get; set; }
2024-05-02 21:44:13 +02:00
public int ContentId { get; set; }
2024-04-05 12:31:34 +02:00
public DateTimeOffset? Deleted { get; set; }
2024-05-02 21:44:13 +02:00
public string Name { get; set; } = default!;
public DateTimeOffset Updated { get; set; }
2024-04-05 12:31:34 +02:00
}
public class NoteEntity : Entity<NoteEntity, Note, int>;
}