yavsc/Yavsc.Abstract/Blogspot/IBlog.cs

14 lines
273 B
C#

9 years ago

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