ContentEditor possibility to upload image in html post

This commit is contained in:
Dominic Villemure
2024-10-12 18:14:02 -04:00
parent a7835670c6
commit deae0f75ba
11 changed files with 566 additions and 6 deletions

View File

@@ -12,6 +12,7 @@ public class ContentModel
public DateTimeOffset? DeletedAt { get; init; }
public required string Title { get; init; }
public required string Description { get; init; }
public string HtmlFileUrl { get; init; } = "";
public required string[]? Urls { get; init; }
public IList<ReactionModel>? Reactions { get; set; } = new List<ReactionModel>();
}