mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-06 17:36:00 +01:00
14 lines
383 B
C#
14 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; }
|
|
}
|
|
}
|