#nullable disable using System.Text.Json.Serialization; namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos { /// /// The token dto. /// public class TokenDto { /// /// Gets or sets the response code. /// [JsonPropertyName("code")] public int Code { get; set; } /// /// Gets or sets the response message. /// [JsonPropertyName("message")] public string Message { get; set; } /// /// Gets or sets the server id. /// [JsonPropertyName("serverID")] public string ServerId { get; set; } /// /// Gets or sets the token. /// [JsonPropertyName("token")] public string Token { get; set; } } }