mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-18 08:06:35 +00:00
update live tv setup
This commit is contained in:
@@ -6,13 +6,16 @@ namespace MediaBrowser.Model.LiveTv
|
||||
{
|
||||
public int? GuideDays { get; set; }
|
||||
public bool EnableMovieProviders { get; set; }
|
||||
public List<TunerHostInfo> TunerHosts { get; set; }
|
||||
public string RecordingPath { get; set; }
|
||||
|
||||
public List<TunerHostInfo> TunerHosts { get; set; }
|
||||
public List<ListingsProviderInfo> ListingProviders { get; set; }
|
||||
|
||||
public LiveTvOptions()
|
||||
{
|
||||
EnableMovieProviders = true;
|
||||
TunerHosts = new List<TunerHostInfo>();
|
||||
ListingProviders = new List<ListingsProviderInfo>();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,4 +25,13 @@ namespace MediaBrowser.Model.LiveTv
|
||||
public string Url { get; set; }
|
||||
public string Type { get; set; }
|
||||
}
|
||||
|
||||
public class ListingsProviderInfo
|
||||
{
|
||||
public string ProviderName { get; set; }
|
||||
public string Username { get; set; }
|
||||
public string Password { get; set; }
|
||||
public string ZipCode { get; set; }
|
||||
public string ListingsId { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user