1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- using System;
- using System.Xml.Serialization;
- using System.Collections.Generic;
- namespace Aop.Api.Domain
- {
-
-
-
- [Serializable]
- public class InputFieldModel : AopObject
- {
-
-
-
- [XmlElement("default_value")]
- public string DefaultValue { get; set; }
-
-
-
- [XmlElement("field_name")]
- public string FieldName { get; set; }
-
-
-
- [XmlElement("field_tips")]
- public string FieldTips { get; set; }
-
-
-
- [XmlElement("field_title")]
- public string FieldTitle { get; set; }
-
-
-
- [XmlElement("field_type")]
- public string FieldType { get; set; }
-
-
-
- [XmlElement("priority")]
- public string Priority { get; set; }
-
-
-
- [XmlArray("regexp_rule_list")]
- [XmlArrayItem("validation_rule")]
- public List<ValidationRule> RegexpRuleList { get; set; }
- }
- }
|