| 12345678910111213141516171819 |
- using System;
- using System.Xml.Serialization;
- using System.Collections.Generic;
- namespace Top.Api.Response
- {
- /// <summary>
- /// TimeGetResponse.
- /// </summary>
- public class TimeGetResponse : TopResponse
- {
- /// <summary>
- /// 淘宝系统当前时间。格式:yyyy-MM-dd HH:mm:ss
- /// </summary>
- [XmlElement("time")]
- public string Time { get; set; }
- }
- }
|