TimeGetResponse.cs 420 B

12345678910111213141516171819
  1. using System;
  2. using System.Xml.Serialization;
  3. using System.Collections.Generic;
  4. namespace Top.Api.Response
  5. {
  6. /// <summary>
  7. /// TimeGetResponse.
  8. /// </summary>
  9. public class TimeGetResponse : TopResponse
  10. {
  11. /// <summary>
  12. /// 淘宝系统当前时间。格式:yyyy-MM-dd HH:mm:ss
  13. /// </summary>
  14. [XmlElement("time")]
  15. public string Time { get; set; }
  16. }
  17. }