mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-04 15:28:23 +00:00
Added SupportsAutoRunAtStartup
This commit is contained in:
parent
6ed380ed1b
commit
b4ac51aa10
11 changed files with 146 additions and 14 deletions
|
|
@ -1,4 +1,6 @@
|
|||
namespace MediaBrowser.Model.LiveTv
|
||||
using System;
|
||||
|
||||
namespace MediaBrowser.Model.LiveTv
|
||||
{
|
||||
/// <summary>
|
||||
/// Class ProgramQuery.
|
||||
|
|
@ -17,6 +19,14 @@
|
|||
/// <value>The user identifier.</value>
|
||||
public string UserId { get; set; }
|
||||
|
||||
public DateTime? MinStartDate { get; set; }
|
||||
|
||||
public DateTime? MaxStartDate { get; set; }
|
||||
|
||||
public DateTime? MinEndDate { get; set; }
|
||||
|
||||
public DateTime? MaxEndDate { get; set; }
|
||||
|
||||
public ProgramQuery()
|
||||
{
|
||||
ChannelIdList = new string[] { };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue