123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System;
- using System.Xml.Serialization;
- namespace Aop.Api.Domain
- {
-
-
-
- [Serializable]
- public class AliTrustBasicInfo : AopObject
- {
-
-
-
- [XmlElement("birthday")]
- public string Birthday { get; set; }
-
-
-
- [XmlElement("gender")]
- public string Gender { get; set; }
-
-
-
- [XmlElement("is_certified")]
- public string IsCertified { get; set; }
-
-
-
- [XmlElement("message")]
- public string Message { get; set; }
-
-
-
- [XmlElement("name")]
- public string Name { get; set; }
- }
- }
|