2012-07-15 20:27:07 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
using MediaBrowser.Model.Entities;
|
2012-07-12 06:55:27 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.TV.Entities
|
|
|
|
|
{
|
|
|
|
|
public class Season : Folder
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Store these to reduce disk access in Episode Resolver
|
|
|
|
|
/// </summary>
|
2012-07-15 20:27:07 +00:00
|
|
|
|
[IgnoreDataMember]
|
2012-08-13 02:14:23 +00:00
|
|
|
|
internal IEnumerable<string> MetadataFiles { get; set; }
|
2012-07-12 06:55:27 +00:00
|
|
|
|
}
|
|
|
|
|
}
|