yavsc/YavscLib/IBlog.cs

15 lines
332 B
C#

9 years ago

10 years ago
namespace Yavsc.Models
{
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
}
}