refacto blogPost

This commit is contained in:
Paul Schneider 2026-08-03 01:32:59 +01:00
commit ec0085b7e3
11 changed files with 85 additions and 52 deletions

View file

@ -0,0 +1,15 @@
using Yavsc.Abstract.Identity;
using Yavsc.Abstract.Identity.Security;
using Yavsc.Interfaces;
namespace Yavsc.Blogspot
{
public interface IBlogPost : IBlogPostPayLoad, ICircleAuthorized, ITaggable<long>, ITrackedEntity, IIdentified<long>, ITitle
{
string AuthorId { get; set; }
IApplicationUser Author { get; }
}
}