Web Api layout

This commit is contained in:
Jöran Malek 2024-02-07 22:16:59 +01:00
parent 5619093f41
commit da6d5576bf
32 changed files with 515 additions and 29 deletions

View file

@ -0,0 +1,18 @@
using InkForge.Data.Infrastructure;
namespace InkForge.Data.Domain;
public class Note
{
public DateTimeOffset Created { get; set; }
public NoteEntity? Parent { get; set; }
public string Name { get; set; } = default!;
public DateTimeOffset Updated { get; set; }
public DateTimeOffset? Deleted { get; set; }
public Blob Content { get; set; } = default!;
}