aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/SyncPlay/UtcTimeResponse.cs
blob: 0a60361544bb9b7ef8b3210b38b942214bff695e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
namespace MediaBrowser.Model.SyncPlay
{
    /// <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; }
    }
}