yavsc/YavscLib/IBlog.cs

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; }
}
}