refactoring the blog post

This commit is contained in:
Paul Schneider 2026-02-22 19:59:33 +00:00
commit ee1e49fde5
20 changed files with 40 additions and 40 deletions

View file

@ -16,7 +16,7 @@ namespace Yavsc.Models.Blog
Id = post.Id;
AuthorId = post.AuthorId;
ACL = post.ACL;
Content = post.Content;
Article = post.Article;
Title = post.Title;
Publish = publish;
}
@ -39,7 +39,7 @@ namespace Yavsc.Models.Blog
public string Title { get; set; }
[StringLength(56224)]
public string? Content { get; set; }
public string? Article { get; set; }
[InverseProperty("Target")]
[Display(Name = "Liste de contrôle d'accès")]