yavsc/YavscLib/Blogspot/IBlog.cs

14 lines
302 B
C#

9 years ago

using YavscLib.Interfaces;
namespace YavscLib
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
}
}