#nullable disable
#pragma warning disable CS1591
namespace MediaBrowser.Model.LiveTv
{
    public class TimerQuery
    {
        /// 
        /// Gets or sets the channel identifier.
        /// 
        /// The channel identifier.
        public string ChannelId { get; set; }
        public string Id { get; set; }
        /// 
        /// Gets or sets the series timer identifier.
        /// 
        /// The series timer identifier.
        public string SeriesTimerId { get; set; }
        public bool? IsActive { get; set; }
        public bool? IsScheduled { get; set; }
    }
}