This commit is contained in:
Paul Schneider 2025-06-29 18:44:35 +01:00
commit 9b7a6c0125
11 changed files with 66 additions and 25 deletions

View file

@ -5,8 +5,8 @@ namespace Yavsc
{
public interface IBlogPostPayLoad
{
string Content { get; set; }
string Photo { get; set; }
string? Content { get; set; }
string? Photo { get; set; }
}
public interface IBlogPost :IBlogPostPayLoad, ITrackedEntity, IIdentified<long>, ITitle