1
0
Fork 0
forked from aly/qstbak
qstbak/Questionable/Questionable.Validation.Validators/GatheringSchemaValidator.cs
2026-08-17 20:29:32 +10:00

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)
{
}
}