refabrique

This commit is contained in:
Paul Schneider 2016-07-20 13:52:38 +02:00
commit 817c1c151f
34 changed files with 3476 additions and 35 deletions

18
Yavsc.Client/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; }
}
}