BroadcasterDto.cs 885 B

12345678910111213141516171819202122232425262728293031323334
  1. using System.Text.Json.Serialization;
  2. namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
  3. {
  4. /// <summary>
  5. /// Broadcaster dto.
  6. /// </summary>
  7. public class BroadcasterDto
  8. {
  9. /// <summary>
  10. /// Gets or sets the city.
  11. /// </summary>
  12. [JsonPropertyName("city")]
  13. public string? City { get; set; }
  14. /// <summary>
  15. /// Gets or sets the state.
  16. /// </summary>
  17. [JsonPropertyName("state")]
  18. public string? State { get; set; }
  19. /// <summary>
  20. /// Gets or sets the postal code.
  21. /// </summary>
  22. [JsonPropertyName("postalCode")]
  23. public string? Postalcode { get; set; }
  24. /// <summary>
  25. /// Gets or sets the country.
  26. /// </summary>
  27. [JsonPropertyName("country")]
  28. public string? Country { get; set; }
  29. }
  30. }