jellyfin/MediaBrowser.Model/LiveTv/LiveTvOptions.cs

69 lines
2.1 KiB
C#
Raw Normal View History

2015-07-20 20:32:55 +02:00
using System.Collections.Generic;
namespace MediaBrowser.Model.LiveTv
{
public class LiveTvOptions
{
public int? GuideDays { get; set; }
2015-03-14 21:00:32 +01:00
public bool EnableMovieProviders { get; set; }
2015-07-20 20:32:55 +02:00
public string RecordingPath { get; set; }
2015-08-22 21:46:55 +02:00
public bool EnableAutoOrganize { get; set; }
2016-02-12 08:01:38 +01:00
public bool EnableRecordingEncoding { get; set; }
2015-03-15 02:42:09 +01:00
2015-07-23 07:25:55 +02:00
public List<TunerHostInfo> TunerHosts { get; set; }
public List<ListingsProviderInfo> ListingProviders { get; set; }
2015-08-24 04:08:20 +02:00
public int PrePaddingSeconds { get; set; }
public int PostPaddingSeconds { get; set; }
2016-02-24 20:06:26 +01:00
2015-03-15 02:42:09 +01:00
public LiveTvOptions()
{
EnableMovieProviders = true;
2015-07-20 20:32:55 +02:00
TunerHosts = new List<TunerHostInfo>();
2015-07-23 07:25:55 +02:00
ListingProviders = new List<ListingsProviderInfo>();
2015-03-15 02:42:09 +01:00
}
}
2015-07-20 20:32:55 +02:00
public class TunerHostInfo
{
2015-07-21 06:22:46 +02:00
public string Id { get; set; }
2015-07-20 20:32:55 +02:00
public string Url { get; set; }
public string Type { get; set; }
2016-03-08 06:00:03 +01:00
public string DeviceId { get; set; }
2015-07-25 20:11:46 +02:00
public bool ImportFavoritesOnly { get; set; }
2015-07-27 18:21:18 +02:00
public bool IsEnabled { get; set; }
2016-03-13 08:34:17 +01:00
public string M3UUrl { get; set; }
2016-03-16 22:39:49 +01:00
public string InfoUrl { get; set; }
2016-03-13 08:34:17 +01:00
public string FriendlyName { get; set; }
public int Tuners { get; set; }
2016-03-14 04:32:03 +01:00
public string DiseqC { get; set; }
2015-07-27 18:21:18 +02:00
2016-02-25 21:29:38 +01:00
public int DataVersion { get; set; }
2015-07-27 18:21:18 +02:00
public TunerHostInfo()
{
IsEnabled = true;
}
2015-07-20 20:32:55 +02:00
}
2015-07-23 07:25:55 +02:00
public class ListingsProviderInfo
{
2015-07-23 15:23:22 +02:00
public string Id { get; set; }
public string Type { get; set; }
2015-07-23 07:25:55 +02:00
public string Username { get; set; }
public string Password { get; set; }
public string ListingsId { get; set; }
2015-07-23 15:23:22 +02:00
public string ZipCode { get; set; }
2015-07-24 01:40:54 +02:00
public string Country { get; set; }
2016-02-17 04:07:15 +01:00
public string Path { get; set; }
2016-02-24 20:06:26 +01:00
public string[] EnabledTuners { get; set; }
public bool EnableAllTuners { get; set; }
public ListingsProviderInfo()
{
EnabledTuners = new string[] { };
EnableAllTuners = true;
}
2015-07-23 07:25:55 +02:00
}
}