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,13 @@
namespace Orchard.Fields.Settings {
public class NumericFieldSettings {
public string Hint { get; set; }
public bool Required { get; set; }
public int Scale { get; set; }
public decimal? Minimum { get; set; }
public decimal? Maximum { get; set; }
public NumericFieldSettings() {
Scale = 0;
}
}
}