jellyfin/MediaBrowser.Controller/Providers/ExtraInfo.cs

15 lines
319 B
C#
Raw Normal View History

2015-03-13 20:37:19 +01:00
using MediaBrowser.Model.Entities;
namespace MediaBrowser.Controller.Providers
{
public class ExtraInfo
{
public string Path { get; set; }
public LocationType LocationType { get; set; }
public bool IsDownloadable { get; set; }
public ExtraType ExtraType { get; set; }
}
}