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