dotnet-cqrs/PoweredSoft.CQRS.GraphQL.Abstractions/IGraphQLFieldError.cs

11 lines
219 B
C#

using System.Collections.Generic;
namespace PoweredSoft.CQRS.GraphQL.Abstractions
{
public interface IGraphQLFieldError
{
string Field { get; set; }
List<string> Errors { get; set; }
}
}