mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
Including Orchard.Fields
--HG-- branch : 1.x
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user