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.
24 lines
713 B
24 lines
713 B
10 years ago
|
using System.Collections.Generic;
|
||
|
using MediaBrowser.Controller.Entities;
|
||
|
using MediaBrowser.Model.Entities;
|
||
|
|
||
|
namespace MediaBrowser.Controller.Providers
|
||
|
{
|
||
|
public class LocalMetadataResult<T>
|
||
|
where T : IHasMetadata
|
||
|
{
|
||
|
public bool HasMetadata { get; set; }
|
||
|
public T Item { get; set; }
|
||
|
|
||
|
public List<LocalImageInfo> Images { get; set; }
|
||
|
public List<ChapterInfo> Chapters { get; set; }
|
||
|
public List<UserItemData> UserDataLIst { get; set; }
|
||
|
|
||
|
public LocalMetadataResult()
|
||
|
{
|
||
|
Images = new List<LocalImageInfo>();
|
||
|
Chapters = new List<ChapterInfo>();
|
||
|
UserDataLIst = new List<UserItemData>();
|
||
|
}
|
||
|
}
|
||
|
}
|