Files
yavsc/ZicMoove/ZicMoove/Model/Blog/Blog.cs
2017-02-17 16:23:46 +01:00

58 lines
865 B
C#

using System;
using YavscLib;
namespace ZicMoove.Model.Blog
{
public partial class Blog : IBlog
{
public string AuthorId
{
get; set;
}
public string Content
{
get; set;
}
public long Id
{
get; set;
}
public DateTime DateModified
{
get; set;
}
public string UserCreated { get; set; }
public string UserModified { get; set; }
public string Photo
{
get; set;
}
public DateTime DateCreated
{
get; set;
}
public int Rate
{
get; set;
}
public string Title
{
get; set;
}
public bool Visible
{
get; set;
}
}
}