mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 19:08:53 -07:00
17 lines
410 B
C#
17 lines
410 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|