sozsoft-platform/api/modules/Sozsoft.SqlQueryManager/Sozsoft.SqlQueryManager.Application.Contracts/SqlTemplateDto.cs

19 lines
450 B
C#
Raw Permalink Normal View History

2026-02-24 20:44:16 +00:00
using System.Collections.Generic;
namespace Sozsoft.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; }
}