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

19 lines
373 B
C#
Raw Normal View History

2017-01-17 14:56:53 +01:00

2017-05-02 11:23:55 +02:00
2017-05-27 16:22:58 +02:00
2025-06-29 19:53:56 +01:00
using Yavsc.Abstract.Identity;
2017-05-27 16:22:58 +02:00
namespace Yavsc
2016-07-20 13:52:38 +02:00
{
2025-02-23 20:23:23 +00:00
public interface IBlogPostPayLoad
{
2025-06-29 18:44:35 +01:00
string? Content { get; set; }
string? Photo { get; set; }
2025-02-23 20:23:23 +00:00
}
2025-06-29 19:53:56 +01:00
public interface IBlogPost : IBlogPostPayLoad, ITrackedEntity, IIdentified<long>, ITitle
2025-02-23 20:23:23 +00:00
{
string AuthorId { get; set; }
2025-06-29 19:53:56 +01:00
IApplicationUser Author { get; }
2016-07-20 13:52:38 +02:00
}
2017-02-07 15:04:58 +01:00
}