27 lines
593 B
C#
27 lines
593 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
|
|
namespace Jellyfin.Plugin.MediaCleaner.Models;
|
|
|
|
/// <summary>
|
|
/// Contains series information.
|
|
/// </summary>
|
|
public class SeriesInfo
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets series identifier.
|
|
/// </summary>
|
|
public Guid Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets series name.
|
|
/// </summary>
|
|
public string SeriesName { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Gets or sets seasons.
|
|
/// </summary>
|
|
public IEnumerable<string> Seasons { get; set; } = [];
|
|
}
|