yavsc/YavscLib/Blogspot/IBlog.cs
2017-03-02 20:25:49 +01:00

15 lines
329 B
C#

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