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