yavsc/YavscLib/Blogspot/IBlog.cs

16 lines
329 B
C#

8 years ago

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