jellyfin/MediaBrowser.TV/Entities/Season.cs

16 lines
409 B
C#
Raw Normal View History

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>
[IgnoreDataMember]
2012-07-12 06:55:27 +00:00
public IEnumerable<string> MetadataFiles { get; set; }
}
}