using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// SmartCityCommodityInfo Data Structure. /// [Serializable] public class SmartCityCommodityInfo : AopObject { /// /// 服务归属 /// [XmlElement("affiliation")] public string Affiliation { get; set; } /// /// 授权文件 /// [XmlElement("auth_file")] public string AuthFile { get; set; } /// /// 测试验收说明 /// [XmlElement("test_detail")] public string TestDetail { get; set; } /// /// 测试报表 /// [XmlElement("test_report")] public string TestReport { get; set; } /// /// 用户指南 /// [XmlElement("user_guide")] public string UserGuide { get; set; } } }