27 lines
847 B
C#
27 lines
847 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Svrnty.CQRS.Grpc.Generators.Models
|
|
{
|
|
public class QueryInfo
|
|
{
|
|
public string Name { get; set; }
|
|
public string FullyQualifiedName { get; set; }
|
|
public string Namespace { get; set; }
|
|
public List<PropertyInfo> Properties { get; set; }
|
|
public string ResultType { get; set; }
|
|
public string ResultFullyQualifiedName { get; set; }
|
|
public string HandlerInterfaceName { get; set; }
|
|
|
|
public QueryInfo()
|
|
{
|
|
Name = string.Empty;
|
|
FullyQualifiedName = string.Empty;
|
|
Namespace = string.Empty;
|
|
Properties = new List<PropertyInfo>();
|
|
ResultType = string.Empty;
|
|
ResultFullyQualifiedName = string.Empty;
|
|
HandlerInterfaceName = string.Empty;
|
|
}
|
|
}
|
|
}
|