using System; using System.Collections.Generic; using System.Collections.ObjectModel; namespace Jellyfin.Plugin.MediaCleaner.Models; /// /// Contains series information. /// public class SeriesInfo { /// /// Gets or sets series identifier. /// public Guid Id { get; set; } /// /// Gets or sets series name. /// public string SeriesName { get; set; } = string.Empty; /// /// Gets or sets seasons. /// public IEnumerable Seasons { get; set; } = []; }