#nullable disable using System.Text.Json.Serialization; namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos { /// /// Broadcaster dto. /// public class BroadcasterDto { /// /// Gets or sets the city. /// [JsonPropertyName("city")] public string City { get; set; } /// /// Gets or sets the state. /// [JsonPropertyName("state")] public string State { get; set; } /// /// Gets or sets the postal code. /// [JsonPropertyName("postalCode")] public string Postalcode { get; set; } /// /// Gets or sets the country. /// [JsonPropertyName("country")] public string Country { get; set; } } }