jellyfin/MediaBrowser.Model/LiveTv/LiveTvOptions.cs

40 lines
1.2 KiB
C#
Raw Normal View History

2015-07-20 11:32:55 -07:00
using System.Collections.Generic;
namespace MediaBrowser.Model.LiveTv
{
public class LiveTvOptions
{
public int? GuideDays { get; set; }
2015-03-14 13:00:32 -07:00
public bool EnableMovieProviders { get; set; }
2015-07-20 11:32:55 -07:00
public string RecordingPath { get; set; }
2015-03-14 18:42:09 -07:00
2015-07-22 22:25:55 -07:00
public List<TunerHostInfo> TunerHosts { get; set; }
public List<ListingsProviderInfo> ListingProviders { get; set; }
2015-03-14 18:42:09 -07:00
public LiveTvOptions()
{
EnableMovieProviders = true;
2015-07-20 11:32:55 -07:00
TunerHosts = new List<TunerHostInfo>();
2015-07-22 22:25:55 -07:00
ListingProviders = new List<ListingsProviderInfo>();
2015-03-14 18:42:09 -07:00
}
}
2015-07-20 11:32:55 -07:00
public class TunerHostInfo
{
2015-07-20 21:22:46 -07:00
public string Id { get; set; }
2015-07-20 11:32:55 -07:00
public string Url { get; set; }
public string Type { get; set; }
2015-07-25 11:11:46 -07:00
public bool ImportFavoritesOnly { get; set; }
2015-07-20 11:32:55 -07:00
}
2015-07-22 22:25:55 -07:00
public class ListingsProviderInfo
{
2015-07-23 06:23:22 -07:00
public string Id { get; set; }
public string Type { get; set; }
2015-07-22 22:25:55 -07:00
public string Username { get; set; }
public string Password { get; set; }
public string ListingsId { get; set; }
2015-07-23 06:23:22 -07:00
public string ZipCode { get; set; }
2015-07-23 16:40:54 -07:00
public string Country { get; set; }
2015-07-22 22:25:55 -07:00
}
}