yavsc/YavscLib/IBlog.cs

15 lines
329 B
C#
Raw Normal View History

2017-01-17 14:56:53 +01:00

2017-02-07 15:04:58 +01:00
namespace YavscLib
2016-07-20 13:52:38 +02:00
{
2017-01-17 14:56:53 +01:00
public interface IBlog : IBaseTrackedEntity
2016-07-20 13:52:38 +02:00
{
string AuthorId { get; set; }
string Content { get; set; }
2016-07-20 13:52:38 +02:00
long Id { get; set; }
string Photo { get; set; }
2017-01-17 14:56:53 +01:00
int Rate { get; set; }
string Title { get; set; }
bool Visible { get; set; }
2016-07-20 13:52:38 +02:00
}
2017-02-07 15:04:58 +01:00
}