Show / Hide Table of Contents

Class DynamicFormsDemoModel.DetailedModel

Inheritance
System.Object
DynamicFormsDemoModel.DetailedModel
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo.Views.Components.Themes.Shared.Demos.DynamicFormsDemo
Assembly: Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo.dll
Syntax
public class DetailedModel

Constructors

DetailedModel()

Declaration
public DetailedModel()

Properties

Age

Declaration
[Required]
[Display(Name = "Age")]
public int Age { get; set; }
Property Value
Type Description
System.Int32

Country

Declaration
[Display(Name = "Country")]
public string Country { get; set; }
Property Value
Type Description
System.String

Day

Declaration
[DataType(DataType.Date)]
[Display(Name = "Day")]
public DateTime Day { get; set; }
Property Value
Type Description
System.DateTime

Description

Declaration
[Display(Name = "Description")]
public string Description { get; set; }
Property Value
Type Description
System.String

IsActive

Declaration
[Display(Name = "Is Active")]
public bool IsActive { get; set; }
Property Value
Type Description
System.Boolean

MyCarType

Declaration
[Required]
[Display(Name = "My Car Type")]
public DynamicFormsDemoModel.CarType MyCarType { get; set; }
Property Value
Type Description
DynamicFormsDemoModel.CarType

Name

Declaration
[Required]
[Display(Name = "Name")]
public string Name { get; set; }
Property Value
Type Description
System.String

NeighborCountries

Declaration
[Display(Name = "Neighbor Countries")]
public List<string> NeighborCountries { get; set; }
Property Value
Type Description
System.Collections.Generic.List<System.String>

Password

Declaration
[Required]
[DataType(DataType.Password)]
[Display(Name = "Password")]
public string Password { get; set; }
Property Value
Type Description
System.String

YourCarType

Declaration
[Required]
[Display(Name = "Your Car Type")]
public DynamicFormsDemoModel.CarType YourCarType { get; set; }
Property Value
Type Description
DynamicFormsDemoModel.CarType

Extension Methods

AbpObjectExtensions.As<T>(Object)
AbpObjectExtensions.To<T>(Object)
AbpObjectExtensions.IsIn<T>(T, T[])
AbpObjectExtensions.If<T>(T, Boolean, Func<T, T>)
AbpObjectExtensions.If<T>(T, Boolean, Action<T>)
LockExtensions.Locking(Object, Action)
LockExtensions.Locking<T>(T, Action<T>)
LockExtensions.Locking<TResult>(Object, Func<TResult>)
LockExtensions.Locking<T, TResult>(T, Func<T, TResult>)
Back to top Powered by Volosoft