mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 10:58:58 -07:00
15 lines
383 B
C#
15 lines
383 B
C#
using System.Collections.Generic;
|
|
using System.Runtime.Serialization;
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
namespace MediaBrowser.TV.Entities
|
|
{
|
|
public class Season : Folder
|
|
{
|
|
/// <summary>
|
|
/// Store these to reduce disk access in Episode Resolver
|
|
/// </summary>
|
|
internal IEnumerable<string> MetadataFiles { get; set; }
|
|
}
|
|
}
|