19 lines
373 B
C#
19 lines
373 B
C#
|
|
|
|
|
|
using Yavsc.Abstract.Identity;
|
|
|
|
namespace Yavsc
|
|
{
|
|
public interface IBlogPostPayLoad
|
|
{
|
|
string? Content { get; set; }
|
|
string? Photo { get; set; }
|
|
|
|
}
|
|
public interface IBlogPost : IBlogPostPayLoad, ITrackedEntity, IIdentified<long>, ITitle
|
|
{
|
|
string AuthorId { get; set; }
|
|
IApplicationUser Author { get; }
|
|
}
|
|
}
|