18 namespace erminas.SmartAPI.CMS.Project.ContentClasses.Elements
22 int? MaxCharacterCount {
get;
set; }
25 internal class StandardFieldNumeric : StandardFieldNonDate, IStandardFieldNumeric
27 internal StandardFieldNumeric(
IContentClass contentClass, XmlElement xmlElement)
28 : base(contentClass, xmlElement)
32 [RedDot(
"eltmaxsize")]
33 public int? MaxCharacterCount
35 get {
return GetAttributeValue<int?>(); }
36 set { SetAttributeValue(value); }