You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
757 B
30 lines
757 B
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
{
|
|
public class ItemInfo
|
|
{
|
|
public ItemInfo()
|
|
{
|
|
}
|
|
|
|
public ItemInfo(IHasMetadata item)
|
|
{
|
|
Path = item.Path;
|
|
ContainingFolderPath = item.ContainingFolderPath;
|
|
IsInMixedFolder = item.IsInMixedFolder;
|
|
|
|
var video = item as Video;
|
|
if (video != null)
|
|
{
|
|
VideoType = video.VideoType;
|
|
}
|
|
}
|
|
|
|
public string Path { get; set; }
|
|
public string ContainingFolderPath { get; set; }
|
|
public VideoType VideoType { get; set; }
|
|
public bool IsInMixedFolder { get; set; }
|
|
}
|
|
} |