mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-08-05 21:57:04 +02:00
26 lines
651 B
C#
26 lines
651 B
C#
#nullable disable
|
|
|
|
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 List<string> Date { get; set; }
|
|
}
|
|
}
|