jellyfin-server/MediaBrowser.Model/Configuration/LiveTvOptions.cs

8 lines
186 B
C#
Raw Normal View History

namespace MediaBrowser.Model.Configuration
{
public class LiveTvOptions
{
public int? GuideDays { get; set; }
2014-05-17 18:37:40 +00:00
public string ActiveService { get; set; }
}
}