jellyfin-server/MediaBrowser.Controller/Channels/ChannelItemInfo.cs

97 lines
2.2 KiB
C#
Raw Normal View History

using MediaBrowser.Controller.Entities;
2014-03-18 01:45:41 +00:00
using MediaBrowser.Model.Entities;
using System;
using System.Collections.Generic;
namespace MediaBrowser.Controller.Channels
{
2014-03-18 01:45:41 +00:00
public class ChannelItemInfo : IHasProviderIds
{
public string Name { get; set; }
public string Id { get; set; }
public ChannelItemType Type { get; set; }
public string OfficialRating { get; set; }
public string Overview { get; set; }
public List<string> Genres { get; set; }
2014-05-03 04:20:04 +00:00
public List<string> Studios { get; set; }
public List<PersonInfo> People { get; set; }
public float? CommunityRating { get; set; }
public long? RunTimeTicks { get; set; }
2014-03-18 01:45:41 +00:00
public bool IsInfiniteStream { get; set; }
public string ImageUrl { get; set; }
public ChannelMediaType MediaType { get; set; }
public ChannelMediaContentType ContentType { get; set; }
2014-03-18 01:45:41 +00:00
public Dictionary<string, string> ProviderIds { get; set; }
2014-03-18 17:05:57 +00:00
public DateTime? PremiereDate { get; set; }
public int? ProductionYear { get; set; }
2014-05-03 04:20:04 +00:00
public DateTime? DateCreated { get; set; }
public List<ChannelMediaInfo> MediaSources { get; set; }
public ChannelItemInfo()
{
2014-05-03 04:20:04 +00:00
MediaSources = new List<ChannelMediaInfo>();
Genres = new List<string>();
2014-05-03 04:20:04 +00:00
Studios = new List<string>();
People = new List<PersonInfo>();
2014-03-18 01:45:41 +00:00
ProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
}
}
public enum ChannelItemType
{
Media = 0,
Category = 1
}
public enum ChannelMediaType
{
Audio = 0,
Video = 1
}
public enum ChannelMediaContentType
{
Clip = 0,
Podcast = 1,
Trailer = 2,
Movie = 3,
2014-05-03 04:20:04 +00:00
Episode = 4,
Song = 5
}
public class ChannelMediaInfo
{
public string Path { get; set; }
public Dictionary<string, string> RequiredHttpHeaders { get; set; }
public ChannelMediaInfo()
{
RequiredHttpHeaders = new Dictionary<string, string>();
}
}
}