ServerTime.cs 454 B

12345678910111213141516171819
  1. using LC.Newtonsoft.Json;
  2. namespace TapTap.AntiAddiction.Model
  3. {
  4. internal class ServerTimeResult
  5. {
  6. /// <summary>
  7. /// 服务器当前时间戳
  8. /// </summary>
  9. [JsonProperty("timestamp")]
  10. internal long Timestamp { get; private set; }
  11. }
  12. internal class ServerTimeResponse : BaseResponse
  13. {
  14. [JsonProperty("data")]
  15. internal ServerTimeResult Result { get; private set; }
  16. }
  17. }