9 lines
221 B
C#
9 lines
221 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Jellyfin.Plugin.MediaCleaner.Models;
|
|
|
|
public record RadarrMovie(
|
|
[property: JsonPropertyName("id")] int? Id,
|
|
[property: JsonPropertyName("title")] string? Title
|
|
);
|