This commit is contained in:
2016-11-28 15:19:59 +01:00
parent b6685530e8
commit 0dba84bbb5
19 changed files with 0 additions and 6 deletions

18
YavscLib/IBlog.cs Normal file
View File

@ -0,0 +1,18 @@
using System;
namespace Yavsc.Models
{
public interface IBlog
{
IApplicationUser Author { get; set; }
string AuthorId { get; set; }
string bcontent { get; set; }
long Id { get; set; }
DateTime modified { get; set; }
string photo { get; set; }
DateTime posted { get; set; }
int rate { get; set; }
string title { get; set; }
bool visible { get; set; }
}
}