yavsc/src/Yavsc.Abstract/Blogspot/IBlogPost.cs

14 lines
276 B
C#
Raw Normal View History

2026-08-03 01:32:59 +01:00
using Yavsc.Abstract.Identity;
using Yavsc.Abstract.Identity.Security;
using Yavsc.Interfaces;
namespace Yavsc.Blogspot
{
2026-08-05 21:05:14 +01:00
public interface IBlogPost : IBlogPostPayLoad, ICircleAuthorized, ITrackedEntity, ITitle
2026-08-03 01:32:59 +01:00
{
IApplicationUser Author { get; }
}
}