Class UpdateModel.UpdateBlogPostViewModel
Inheritance
UpdateModel.UpdateBlogPostViewModel
Assembly: Volo.CmsKit.Admin.Web.dll
Syntax
public class UpdateModel.UpdateBlogPostViewModel : ExtensibleObject, IHasExtraProperties, IValidatableObject, IHasConcurrencyStamp
Constructors
UpdateBlogPostViewModel()
Declaration
public UpdateBlogPostViewModel()
Properties
ConcurrencyStamp
Declaration
public string ConcurrencyStamp { get; set; }
Property Value
Content
Declaration
[HiddenInput]
[DynamicMaxLength(typeof(BlogPostConsts), "MaxContentLength")]
public string Content { get; set; }
Property Value
CoverImageMediaId
Declaration
[HiddenInput]
public Guid? CoverImageMediaId { get; set; }
Property Value
ShortDescription
Declaration
[DynamicMaxLength(typeof(BlogPostConsts), "MaxShortDescriptionLength")]
[DisplayOrder(10001)]
public string ShortDescription { get; set; }
Property Value
Slug
Declaration
[DynamicStringLength(typeof(BlogPostConsts), "MaxSlugLength", "MinSlugLength")]
[Required]
[DisplayOrder(10000)]
[DynamicFormIgnore]
public string Slug { get; set; }
Property Value
Title
Declaration
[DynamicMaxLength(typeof(BlogPostConsts), "MaxTitleLength")]
[Required]
[DynamicFormIgnore]
public string Title { get; set; }
Property Value
Implements
Extension Methods