2020-06-03 09:54:01 +00:00
|
|
|
#nullable disable
|
|
|
|
|
2020-05-06 21:42:53 +00:00
|
|
|
namespace MediaBrowser.Model.SyncPlay
|
2020-04-16 14:02:52 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Class UtcTimeResponse.
|
|
|
|
/// </summary>
|
|
|
|
public class UtcTimeResponse
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the UTC time when request has been received.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The UTC time when request has been received.</value>
|
|
|
|
public string RequestReceptionTime { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the UTC time when response has been sent.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The UTC time when response has been sent.</value>
|
|
|
|
public string ResponseTransmissionTime { get; set; }
|
|
|
|
}
|
|
|
|
}
|