InkForge/shared/InkForge.Data/Notes.cs

18 lines
389 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; }
public string Name { get; set; } = default!;
public DateTimeOffset Updated { get; set; }
public DateTimeOffset? Deleted { get; set; }
public Blob Content { get; set; } = default!;
}
public class NoteEntity : Entity<NoteEntity, Note, int>;
}