using System;
using Tiobon.Core.Model.Models;
namespace Tiobon.Core.Model.ViewModels
{
///
/// 留言信息展示类
///
public class GuestbookViewModels
{
/// 留言表
///
///
public int id { get; set; }
/// 博客ID
///
///
public int? TiobonId { get; set; }
/// 创建时间
///
///
public DateTime createdate { get; set; }
public string username { get; set; }
/// 手机
///
///
public string phone { get; set; }
/// qq
///
///
public string QQ { get; set; }
/// 留言内容
///
///
public string body { get; set; }
/// ip地址
///
///
public string ip { get; set; }
/// 是否显示在前台,0否1是
///
///
public bool isshow { get; set; }
public TiobonArticle Tiobonarticle { get; set; }
}
}