mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-14 10:54:50 +08:00
15 lines
425 B
C#
15 lines
425 B
C#
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 string DefaultValue { get; set; }
|
|
|
|
public NumericFieldSettings() {
|
|
Scale = 0;
|
|
}
|
|
}
|
|
}
|