jellyfin/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/BroadcasterDto.cs

35 lines
885 B
C#
Raw Normal View History

2021-08-29 00:32:50 +02:00
using System.Text.Json.Serialization;
namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
{
/// <summary>
/// Broadcaster dto.
/// </summary>
public class BroadcasterDto
{
/// <summary>
/// Gets or sets the city.
/// </summary>
[JsonPropertyName("city")]
2021-09-03 18:59:40 +02:00
public string? City { get; set; }
2021-08-29 00:32:50 +02:00
/// <summary>
/// Gets or sets the state.
/// </summary>
[JsonPropertyName("state")]
2021-09-03 18:59:40 +02:00
public string? State { get; set; }
2021-08-29 00:32:50 +02:00
/// <summary>
/// Gets or sets the postal code.
/// </summary>
[JsonPropertyName("postalCode")]
2021-09-03 18:59:40 +02:00
public string? Postalcode { get; set; }
2021-08-29 00:32:50 +02:00
/// <summary>
/// Gets or sets the country.
/// </summary>
[JsonPropertyName("country")]
2021-09-03 18:59:40 +02:00
public string? Country { get; set; }
2021-08-29 00:32:50 +02:00
}
}