| | | 1 | | #nullable disable |
| | | 2 | | #pragma warning disable CS1591 |
| | | 3 | | |
| | | 4 | | using System; |
| | | 5 | | using MediaBrowser.Model.Dto; |
| | | 6 | | |
| | | 7 | | namespace MediaBrowser.Model.LiveTv |
| | | 8 | | { |
| | | 9 | | public class ListingsProviderInfo |
| | | 10 | | { |
| | | 11 | | public ListingsProviderInfo() |
| | | 12 | | { |
| | 5 | 13 | | NewsCategories = new[] { "news", "journalism", "documentary", "current affairs" }; |
| | 5 | 14 | | SportsCategories = new[] { "sports", "basketball", "baseball", "football" }; |
| | 5 | 15 | | KidsCategories = new[] { "kids", "family", "children", "childrens", "disney" }; |
| | 5 | 16 | | MovieCategories = new[] { "movie" }; |
| | 5 | 17 | | EnabledTuners = Array.Empty<string>(); |
| | 5 | 18 | | EnableAllTuners = true; |
| | 5 | 19 | | ChannelMappings = Array.Empty<NameValuePair>(); |
| | 5 | 20 | | } |
| | | 21 | | |
| | | 22 | | public string Id { get; set; } |
| | | 23 | | |
| | | 24 | | public string Type { get; set; } |
| | | 25 | | |
| | | 26 | | public string Username { get; set; } |
| | | 27 | | |
| | | 28 | | public string Password { get; set; } |
| | | 29 | | |
| | | 30 | | public string ListingsId { get; set; } |
| | | 31 | | |
| | | 32 | | public string ZipCode { get; set; } |
| | | 33 | | |
| | | 34 | | public string Country { get; set; } |
| | | 35 | | |
| | | 36 | | public string Path { get; set; } |
| | | 37 | | |
| | | 38 | | public string[] EnabledTuners { get; set; } |
| | | 39 | | |
| | | 40 | | public bool EnableAllTuners { get; set; } |
| | | 41 | | |
| | | 42 | | public string[] NewsCategories { get; set; } |
| | | 43 | | |
| | | 44 | | public string[] SportsCategories { get; set; } |
| | | 45 | | |
| | | 46 | | public string[] KidsCategories { get; set; } |
| | | 47 | | |
| | | 48 | | public string[] MovieCategories { get; set; } |
| | | 49 | | |
| | | 50 | | public NameValuePair[] ChannelMappings { get; set; } |
| | | 51 | | |
| | | 52 | | public string MoviePrefix { get; set; } |
| | | 53 | | |
| | | 54 | | public string PreferredLanguage { get; set; } |
| | | 55 | | |
| | | 56 | | public string UserAgent { get; set; } |
| | | 57 | | } |
| | | 58 | | } |