2
0

UtcTimeResponse.cs 661 B

12345678910111213141516171819202122
  1. #nullable disable
  2. namespace MediaBrowser.Model.SyncPlay
  3. {
  4. /// <summary>
  5. /// Class UtcTimeResponse.
  6. /// </summary>
  7. public class UtcTimeResponse
  8. {
  9. /// <summary>
  10. /// Gets or sets the UTC time when request has been received.
  11. /// </summary>
  12. /// <value>The UTC time when request has been received.</value>
  13. public string RequestReceptionTime { get; set; }
  14. /// <summary>
  15. /// Gets or sets the UTC time when response has been sent.
  16. /// </summary>
  17. /// <value>The UTC time when response has been sent.</value>
  18. public string ResponseTransmissionTime { get; set; }
  19. }
  20. }