namespace Admin.Core.Service.Admin.Document.Input
{
    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; }
    }
}