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

18 lines
442 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 ReleaseProfileType =>
"'type' is required for 'release_profiles' elements";
}
}