jellyfin-server/MediaBrowser.TV/Entities/Season.cs

17 lines
410 B
C#
Raw Normal View History

2012-07-12 06:55:27 +00:00
using MediaBrowser.Model.Entities;
using System.Linq;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace MediaBrowser.TV.Entities
{
public class Season : Folder
{
/// <summary>
/// Store these to reduce disk access in Episode Resolver
/// </summary>
[JsonIgnore]
public IEnumerable<string> MetadataFiles { get; set; }
}
}