feat: refine content calendar experience

This commit is contained in:
2026-05-05 23:25:58 -04:00
parent b66c10b681
commit a7535d460d
72 changed files with 3233 additions and 1310 deletions

View File

@@ -10,5 +10,11 @@ public class Comment
public required string AuthorDisplayName { get; set; }
public required string AuthorEmail { get; set; }
public required string Body { get; set; }
public string? AttachmentFileName { get; set; }
public string? AttachmentContentType { get; set; }
public long? AttachmentSizeBytes { get; set; }
public string? AttachmentBlobContainerName { get; set; }
public string? AttachmentBlobName { get; set; }
public string? AttachmentBlobUrl { get; set; }
public DateTimeOffset CreatedAt { get; init; }
}