You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
681 B
25 lines
681 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
|
|
{
|
|
/// <summary>
|
|
/// Request schedule for channel dto.
|
|
/// </summary>
|
|
public class RequestScheduleForChannelDto
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the station id.
|
|
/// </summary>
|
|
[JsonPropertyName("stationID")]
|
|
public string? StationId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the list of dates.
|
|
/// </summary>
|
|
[JsonPropertyName("date")]
|
|
public IReadOnlyList<string> Date { get; set; } = Array.Empty<string>();
|
|
}
|
|
}
|