13 lines
277 B
Plaintext
13 lines
277 B
Plaintext
using FastEndpoints;
|
|
using FluentValidation;
|
|
|
|
namespace __MODULE__.Features.__SLICE__;
|
|
|
|
public sealed class Validator : Validator<Request>
|
|
{
|
|
public Validator()
|
|
{
|
|
// Translate approved boundary rules only; UNKNOWN and DECISION_REQUIRED must fail closed.
|
|
}
|
|
}
|