TokenInfoExt.cs 647 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Xml.Serialization;
  3. namespace Top.Api.Domain
  4. {
  5. /// <summary>
  6. /// TokenInfoExt Data Structure.
  7. /// </summary>
  8. [Serializable]
  9. public class TokenInfoExt : TopObject
  10. {
  11. /// <summary>
  12. /// oauthOtherInfo
  13. /// </summary>
  14. [XmlElement("oauth_other_info")]
  15. public Top.Api.Domain.OAuthOtherInfo OauthOtherInfo { get; set; }
  16. /// <summary>
  17. /// open account当前token info中open account id对应的open account信息
  18. /// </summary>
  19. [XmlElement("open_account")]
  20. public Top.Api.Domain.OpenAccount OpenAccount { get; set; }
  21. }
  22. }