yavsc/YavscLib/Blogspot/IBlog.cs

14 lines
302 B
C#

using YavscLib.Interfaces;
namespace YavscLib
{
public interface IBlog : IBaseTrackedEntity, IIdentified<long>, IRating<long>, ITitle
{
string AuthorId { get; set; }
string Content { get; set; }
string Photo { get; set; }
bool Visible { get; set; }
}
}