namespace ZhonTai.Admin.Services.Document.Dto
{
public class DocumentUpdateContentInput
{
///
/// 编号
///
public long Id { get; set; }
///
/// 名称
///
public string Label { get; set; }
///
/// 内容
///
public string Content { get; set; }
///
/// Html
///
public string Html { get; set; }
///
/// 版本
///
public long Version { get; set; }
}
}