mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-28 07:39:43 -05:00
* added Sonarr search type option * updated test data * fixed duplicated Sonarr search items when using search type Season * added enhanced logging option along with Sonarr and Radarr enhanced logs * switched to ghcr.io
8 lines
171 B
C#
8 lines
171 B
C#
namespace Domain.Models.Sonarr;
|
|
|
|
public sealed record Series
|
|
{
|
|
public required long Id { get; init; }
|
|
|
|
public required string Title { get; init; }
|
|
} |