2018-12-27 23:27:57 +00: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; }
|
|
|
|
}
|
2019-01-13 19:30:58 +00:00
|
|
|
}
|