19 lines
446 B
C#
19 lines
446 B
C#
|
|
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; }
|
||
|
|
}
|