Files
jellyfin-jellyfin-1/MediaBrowser.Controller/Providers/ItemInfo.cs

32 lines
916 B
C#
Raw Normal View History

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