forked from aly/qstbak
13 lines
459 B
C#
13 lines
459 B
C#
namespace Questionable.Validation.Validators;
|
|
|
|
internal sealed class SeasonalDutySchemaValidator : DefinitionSchemaValidator
|
|
{
|
|
protected override EPathType PathType => EPathType.SeasonalDuty;
|
|
|
|
protected override string MainSchemaUri => "https://github.com/WigglyMuffin/Questionable/raw/refs/heads/main/SeasonalDutyPaths/seasonaldutydefinition-v1.json";
|
|
|
|
public SeasonalDutySchemaValidator(SchemaRegistrar schemaRegistrar)
|
|
: base(schemaRegistrar)
|
|
{
|
|
}
|
|
}
|