using MediaBrowser.Model.Entities;
using System.Linq;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace MediaBrowser.TV.Entities
{
public class Season : Folder
{
///
/// Store these to reduce disk access in Episode Resolver
///
[JsonIgnore]
public IEnumerable MetadataFiles { get; set; }
}
}