Lidarr/src/NzbDrone.Core/CustomFormats/Specifications/ICustomFormatSpecification.cs

20 lines
486 B
C#

using NzbDrone.Core.Validation;
namespace NzbDrone.Core.CustomFormats
{
public interface ICustomFormatSpecification
{
int Order { get; }
string InfoLink { get; }
string ImplementationName { get; }
string Name { get; set; }
bool Negate { get; set; }
bool Required { get; set; }
NzbDroneValidationResult Validate();
ICustomFormatSpecification Clone();
bool IsSatisfiedBy(CustomFormatInput input);
}
}