This commit is contained in:
Paul Schneider 2016-11-28 15:19:59 +01:00
commit 528e4ac947
19 changed files with 0 additions and 6 deletions

View file

@ -1,18 +0,0 @@
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; }
}
}