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()
Assembly: Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo.dll
public class DetailedModel
Constructors
Declaration
Properties
Declaration
[Required]
[Display(Name = "Age")]
public int Age { get; set; }
Property Value
| Type |
Description |
| System.Int32 |
|
Declaration
[Display(Name = "Country")]
public string Country { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Declaration
[DataType(DataType.Date)]
[Display(Name = "Day")]
public DateTime Day { get; set; }
Property Value
| Type |
Description |
| System.DateTime |
|
Declaration
[Display(Name = "Description")]
public string Description { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Declaration
[Display(Name = "Is Active")]
public bool IsActive { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
Declaration
[Required]
[Display(Name = "My Car Type")]
public DynamicFormsDemoModel.CarType MyCarType { get; set; }
Property Value
Declaration
[Required]
[Display(Name = "Name")]
public string Name { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Declaration
[Display(Name = "Neighbor Countries")]
public List<string> NeighborCountries { get; set; }
Property Value
| Type |
Description |
| System.Collections.Generic.List<System.String> |
|
Declaration
[Required]
[DataType(DataType.Password)]
[Display(Name = "Password")]
public string Password { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Declaration
[Required]
[Display(Name = "Your Car Type")]
public DynamicFormsDemoModel.CarType YourCarType { get; set; }
Property Value
Extension Methods