BroadcasterDto.cs 900 B

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