using Yavsc.Abstract.Identity; namespace Yavsc { public interface IBlogPostPayLoad { string? Content { get; set; } string? Photo { get; set; } } public interface IBlogPost : IBlogPostPayLoad, ITrackedEntity, IIdentified, ITitle { string AuthorId { get; set; } IApplicationUser Author { get; } } }