Updated logging to now show stale seasons for a show
This commit is contained in:
30
Jellyfin.Plugin.MediaCleaner/Models/SeriesInfo.cs
Normal file
30
Jellyfin.Plugin.MediaCleaner/Models/SeriesInfo.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
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>
|
||||
#pragma warning disable CA2227 // Collection properties should be read only
|
||||
#pragma warning disable CA1002 // Do not expose generic lists
|
||||
public List<string> Seasons { get; set; } = [];
|
||||
#pragma warning restore CA1002 // Do not expose generic lists
|
||||
#pragma warning restore CA2227 // Collection properties should be read only
|
||||
}
|
||||
Reference in New Issue
Block a user