Automated formatting: BOM removal, using sort order, final newlines, whitespace normalization across all projects. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
28 lines
939 B
C#
28 lines
939 B
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;
|
|
}
|
|
}
|