Files
yavsc/Yavsc.Abstract/Blogspot/IBlog.cs
2017-10-04 23:53:47 +02:00

14 lines
277 B
C#

namespace Yavsc
{
public interface IBlogPost : IBaseTrackedEntity, IIdentified<long>, IRating<long>, ITitle
{
string AuthorId { get; set; }
string Content { get; set; }
string Photo { get; set; }
bool Visible { get; set; }
}
}