10 lines
320 B
C#
10 lines
320 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Jellyfin.Plugin.MediaCleaner.Models;
|
|
|
|
public record EpisodeDeletionDetails(
|
|
[property: JsonPropertyName("id")] int? EpisodeId,
|
|
[property: JsonPropertyName("episodeFileId")] int? EpisodeFileId,
|
|
[property: JsonPropertyName("seasonNumber")] int? SeasonNumber
|
|
);
|