using System;
using System.Collections.Generic;
using System.Text.Json.Serialization;
namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
{
    /// 
    /// Request schedule for channel dto.
    /// 
    public class RequestScheduleForChannelDto
    {
        /// 
        /// Gets or sets the station id.
        /// 
        [JsonPropertyName("stationID")]
        public string? StationId { get; set; }
        /// 
        /// Gets or sets the list of dates.
        /// 
        [JsonPropertyName("date")]
        public IReadOnlyList Date { get; set; } = Array.Empty();
    }
}