Adds Content deletion

This commit is contained in:
2024-08-16 18:14:48 -04:00
parent d1557f92c6
commit 8b702d16d6
8 changed files with 382 additions and 1 deletions

View File

@@ -8,6 +8,8 @@ public class Content
public Guid CreatedBy { get; init; }
public Creator? Creator { get; set; }
public DateTimeOffset CreatedAt { get; init; }
public Guid? DeletedBy { get; set; }
public DateTimeOffset? DeletedAt { get; set; }
[MaxLength(128)] public required string Title { get; set; }
[MaxLength(2048)] public required string Description { get; set; }