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

37 lines
994 B
C#
Raw Normal View History

2021-09-03 18:59:40 +02:00
using System;
2021-08-29 00:32:50 +02:00
using System.Collections.Generic;
using System.Text.Json.Serialization;
namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
{
/// <summary>
/// Headends dto.
/// </summary>
public class HeadendsDto
{
/// <summary>
/// Gets or sets the headend.
/// </summary>
[JsonPropertyName("headend")]
2021-09-03 18:59:40 +02:00
public string? Headend { get; set; }
2021-08-29 00:32:50 +02:00
/// <summary>
/// Gets or sets the transport.
/// </summary>
[JsonPropertyName("transport")]
2021-09-03 18:59:40 +02:00
public string? Transport { get; set; }
2021-08-29 00:32:50 +02:00
/// <summary>
/// Gets or sets the location.
/// </summary>
[JsonPropertyName("location")]
2021-09-03 18:59:40 +02:00
public string? Location { get; set; }
2021-08-29 00:32:50 +02:00
/// <summary>
/// Gets or sets the list of lineups.
/// </summary>
[JsonPropertyName("lineups")]
2021-09-03 18:59:40 +02:00
public IReadOnlyList<LineupDto> Lineups { get; set; } = Array.Empty<LineupDto>();
2021-08-29 00:32:50 +02:00
}
}