yavsc/Yavsc.Abstract/Blogspot/IBlog.cs

14 lines
277 B
C#

8 years ago

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