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.
///
#pragma warning disable CA2227 // Collection properties should be read only
#pragma warning disable CA1002 // Do not expose generic lists
public List Seasons { get; set; } = [];
#pragma warning restore CA1002 // Do not expose generic lists
#pragma warning restore CA2227 // Collection properties should be read only
}