yavsc/Yavsc.Abstract/Blogspot/IBlog.cs

14 lines
277 B
C#

9 years ago

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