15 lines
332 B
C#
15 lines
332 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using Jellyfin.Plugin.MediaCleaner;
|
|
|
|
namespace Jellyfin.Plugin.MediaCleaner.Models;
|
|
|
|
/// <summary>
|
|
/// Contains series information.
|
|
/// </summary>
|
|
public class SeriesInfo : MediaInfo
|
|
{
|
|
public IEnumerable<string> Seasons { get; set; } = [];
|
|
}
|