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/Sonarr/Config/SonarrValidationMessages.cs

17 lines
409 B

using JetBrains.Annotations;
namespace TrashLib.Sonarr.Config;
[UsedImplicitly]
internal class SonarrValidationMessages : ISonarrValidationMessages
{
public string BaseUrl =>
"Property 'base_url' is required";
public string ApiKey =>
"Property 'api_key' is required";
public string ReleaseProfileTrashIds =>
"'trash_ids' is required for 'release_profiles' elements";
}