12 lines
228 B
C#
12 lines
228 B
C#
using System.Collections.Generic;
|
|
|
|
namespace PoweredSoft.CQRS.GraphQL.Abstractions
|
|
{
|
|
public interface IGraphQLValidationResult
|
|
{
|
|
bool IsValid { get; }
|
|
|
|
List<IGraphQLFieldError> Errors { get; }
|
|
}
|
|
}
|