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/TrashLib/Repo/RepoMetadata.cs

21 lines
411 B

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