jellyfin/MediaBrowser.Controller/Providers/ItemInfo.cs

32 lines
908 B
C#
Raw Normal View History

2016-06-15 19:37:06 -07:00
using System;
2015-05-15 08:46:20 -07:00
using MediaBrowser.Controller.Entities;
using MediaBrowser.Model.Entities;
2015-03-13 12:37:19 -07:00
namespace MediaBrowser.Controller.Providers
{
public class ItemInfo
{
2015-05-15 08:46:20 -07:00
public ItemInfo(IHasMetadata item)
{
Path = item.Path;
ContainingFolderPath = item.ContainingFolderPath;
IsInMixedFolder = item.IsInMixedFolder;
2015-03-13 12:37:19 -07:00
2015-05-15 08:46:20 -07:00
var video = item as Video;
if (video != null)
{
VideoType = video.VideoType;
2015-10-08 09:22:14 -07:00
IsPlaceHolder = video.IsPlaceHolder;
2015-05-15 08:46:20 -07:00
}
2016-06-15 19:37:06 -07:00
ItemType = item.GetType();
2015-05-15 08:46:20 -07:00
}
2016-06-15 19:37:06 -07:00
public Type ItemType { get; set; }
2015-05-15 08:46:20 -07:00
public string Path { get; set; }
public string ContainingFolderPath { get; set; }
public VideoType VideoType { get; set; }
2015-03-13 12:37:19 -07:00
public bool IsInMixedFolder { get; set; }
2015-10-08 09:22:14 -07:00
public bool IsPlaceHolder { get; set; }
2015-03-13 12:37:19 -07:00
}
}