| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | |
|
| | 4 | | [Serializable] |
| | 5 | | public class DropdownComponentModel : BaseComponentModel |
| | 6 | | { |
| | 7 | | public string title; |
| | 8 | | public string searchPlaceHolderText; |
| | 9 | | public string searchNotFoundText; |
| 128 | 10 | | public bool isMultiselect = true; |
| 128 | 11 | | public bool showSelectAllOption = true; |
| | 12 | | public bool isOptionsPanelHeightDynamic = false; |
| 128 | 13 | | public float maxValueForDynamicHeight = 500f; |
| | 14 | | public string emptyContentText; |
| | 15 | | public List<ToggleComponentModel> options; |
| | 16 | | } |