Including Orchard.Fields

--HG--
branch : 1.x
This commit is contained in:
Sebastien Ros
2012-08-22 15:36:25 -07:00
parent e41c207758
commit a181a20e5d
82 changed files with 5422 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
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 EnumerationFieldSettings() {
ListMode = ListMode.Dropdown;
}
}
}