Class FormGroup
The form group DTO.
[DataContract]
public class FormGroup
- Inheritance
-
FormGroup
- Inherited Members
Constructors
FormGroup(List<string>, GroupValidation)
Initializes a new instance of the FormGroup class.
public FormGroup(List<string> groupNames, GroupValidation groupValidation)
Parameters
groupNames
List<string>The list of group names.
groupValidation
GroupValidationThe group validation type.
Properties
DataSyncTag
Gets or sets the DataSync of the checkbox.
[DataMember(Name = "dataSyncTag", EmitDefaultValue = false)]
public string DataSyncTag { get; set; }
Property Value
GroupNames
Gets or sets the group names of the checkbox.
[DataMember(Name = "groupNames", EmitDefaultValue = false)]
public List<string> GroupNames { get; set; }
Property Value
GroupValidation
Gets or sets the Group Validation type.
[DataMember(Name = "groupValidation", EmitDefaultValue = false)]
public GroupValidation GroupValidation { get; set; }
Property Value
MaximumCount
Gets or sets or maximum count of checkbox selection.
[DataMember(Name = "maximumCount", EmitDefaultValue = false)]
public int? MaximumCount { get; set; }
Property Value
- int?
MinimumCount
Gets or sets or minimum count of checkbox selection.
[DataMember(Name = "minimumCount", EmitDefaultValue = false)]
public int? MinimumCount { get; set; }
Property Value
- int?