Files
yavsc/YavscLib/IBlog.cs
2017-01-17 14:56:53 +01:00

15 lines
332 B
C#

namespace Yavsc.Models
{
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; }
}
}