yavsc/Yavsc.Abstract/Blogspot/IBlog.cs

14 lines
273 B
C#

8 years ago

namespace Yavsc
8 years ago
{
public interface IBlog : 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
}
}