You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
recyclarr/src/Recyclarr.TrashLib/Repo/RepoMetadata.cs

22 lines
468 B

namespace Recyclarr.TrashLib.Repo;
public record RadarrMetadata(
IReadOnlyCollection<string> CustomFormats,
IReadOnlyCollection<string> Qualities
);
public record SonarrMetadata(
IReadOnlyCollection<string> ReleaseProfiles,
IReadOnlyCollection<string> Qualities,
IReadOnlyCollection<string> CustomFormats
);
public record JsonPaths(
RadarrMetadata Radarr,
SonarrMetadata Sonarr
);
public record RepoMetadata(
JsonPaths JsonPaths
);