refacto BlogPost serialization

This commit is contained in:
Paul Schneider 2026-08-05 21:05:14 +01:00
commit 0a76784858
8 changed files with 22 additions and 17 deletions

View file

@ -7,9 +7,8 @@ using Yavsc.Interfaces;
namespace Yavsc.Blogspot
{
public interface IBlogPost : IBlogPostPayLoad, ICircleAuthorized, ITaggable<long>, ITrackedEntity, IIdentified<long>, ITitle
public interface IBlogPost : IBlogPostPayLoad, ICircleAuthorized, ITrackedEntity, ITitle
{
string AuthorId { get; set; }
IApplicationUser Author { get; }
}
}