29 lines
1.0 KiB
C#
29 lines
1.0 KiB
C#
namespace Svrnty.CQRS.Grpc.Generators.Models
|
|
{
|
|
public class DynamicQueryInfo
|
|
{
|
|
public string Name { get; set; }
|
|
public string SourceType { get; set; }
|
|
public string SourceTypeFullyQualified { get; set; }
|
|
public string DestinationType { get; set; }
|
|
public string DestinationTypeFullyQualified { get; set; }
|
|
public string? ParamsType { get; set; }
|
|
public string? ParamsTypeFullyQualified { get; set; }
|
|
public string HandlerInterfaceName { get; set; }
|
|
public string QueryInterfaceName { get; set; }
|
|
public bool HasParams { get; set; }
|
|
|
|
public DynamicQueryInfo()
|
|
{
|
|
Name = string.Empty;
|
|
SourceType = string.Empty;
|
|
SourceTypeFullyQualified = string.Empty;
|
|
DestinationType = string.Empty;
|
|
DestinationTypeFullyQualified = string.Empty;
|
|
HandlerInterfaceName = string.Empty;
|
|
QueryInterfaceName = string.Empty;
|
|
HasParams = false;
|
|
}
|
|
}
|
|
}
|