using System;
using System.Collections.Generic;
using System.Text.Json.Serialization;
namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
{
///
/// Headends dto.
///
public class HeadendsDto
{
///
/// Gets or sets the headend.
///
[JsonPropertyName("headend")]
public string? Headend { get; set; }
///
/// Gets or sets the transport.
///
[JsonPropertyName("transport")]
public string? Transport { get; set; }
///
/// Gets or sets the location.
///
[JsonPropertyName("location")]
public string? Location { get; set; }
///
/// Gets or sets the list of lineups.
///
[JsonPropertyName("lineups")]
public IReadOnlyList Lineups { get; set; } = Array.Empty();
}
}