yavsc/Yavsc.Abstract/Blogspot/IBlog.cs

13 lines
277 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
namespace Yavsc
2016-07-20 13:52:38 +02:00
{
2017-10-04 23:53:47 +02:00
public interface IBlogPost : IBaseTrackedEntity, IIdentified<long>, IRating<long>, ITitle
2016-07-20 13:52:38 +02:00
{
string AuthorId { get; set; }
string Content { get; set; }
string Photo { get; set; }
bool Visible { get; set; }
2016-07-20 13:52:38 +02:00
}
2017-02-07 15:04:58 +01:00
}