yavsc/YavscLib/IBlog.cs

16 lines
329 B
C#

9 years ago

namespace YavscLib
10 years ago
{
9 years ago
public interface IBlog : IBaseTrackedEntity
10 years ago
{
string AuthorId { get; set; }
string Content { get; set; }
10 years ago
long Id { get; set; }
string Photo { get; set; }
9 years ago
int Rate { get; set; }
string Title { get; set; }
bool Visible { get; set; }
10 years ago
}
}