mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
22 lines
520 B
C#
22 lines
520 B
C#
namespace Orchard.Fields.Settings {
|
|
|
|
public enum ListMode {
|
|
Dropdown,
|
|
Radiobutton,
|
|
Listbox,
|
|
Checkbox
|
|
}
|
|
|
|
public class EnumerationFieldSettings {
|
|
public string Hint { get; set; }
|
|
public bool Required { get; set; }
|
|
public string Options { get; set; }
|
|
public ListMode ListMode { get; set; }
|
|
public string DefaultValue { get; set; }
|
|
|
|
public EnumerationFieldSettings() {
|
|
ListMode = ListMode.Dropdown;
|
|
}
|
|
}
|
|
}
|