Class UpdatePageInputDto
Inheritance
UpdatePageInputDto
Assembly: Volo.CmsKit.Admin.Application.Contracts.dll
Syntax
public class UpdatePageInputDto : ExtensibleObject, IHasExtraProperties, IValidatableObject, IHasConcurrencyStamp
Constructors
UpdatePageInputDto()
Declaration
public UpdatePageInputDto()
Properties
ConcurrencyStamp
Declaration
public string ConcurrencyStamp { get; set; }
Property Value
Content
Declaration
[DynamicMaxLength(typeof(PageConsts), "MaxContentLength")]
public string Content { get; set; }
Property Value
LayoutName
Declaration
[DynamicMaxLength(typeof(PageConsts), "MaxLayoutNameLength")]
public string LayoutName { get; set; }
Property Value
Script
Declaration
[DynamicMaxLength(typeof(PageConsts), "MaxScriptLength")]
public string Script { get; set; }
Property Value
Slug
Declaration
[Required]
[DynamicMaxLength(typeof(PageConsts), "MaxSlugLength")]
public string Slug { get; set; }
Property Value
Style
Declaration
[DynamicMaxLength(typeof(PageConsts), "MaxStyleLength")]
public string Style { get; set; }
Property Value
Title
Declaration
[Required]
[DynamicMaxLength(typeof(PageConsts), "MaxTitleLength")]
public string Title { get; set; }
Property Value
Implements
Extension Methods