yavsc/Yavsc/Interfaces/IBlog.cs

11 lines
271 B
C#
Raw Normal View History

namespace Yavsc.Interfaces
2016-07-27 10:55:44 +02:00
{
public interface IBlog: IIdentified<long>, IRating<long>, ITitle, ILifeTime
2016-07-27 10:55:44 +02:00
{
string AuthorId { get; set; }
string Content { get; set; }
string Photo { get; set; }
bool Visible { get; set; }
2016-07-27 10:55:44 +02:00
}
}