using System.Collections.Generic; namespace Erp.SqlQueryManager.Application.Contracts; public class SqlTemplateDto { public string Type { get; set; } public string Name { get; set; } public string Description { get; set; } public string Template { get; set; } } public class GetTemplateInput { public string TemplateType { get; set; } public string ObjectName { get; set; } public string SchemaName { get; set; } }