sozsoft-platform/api/modules/Sozsoft.SqlQueryManager/Sozsoft.SqlQueryManager.Application.Contracts/SqlTemplateDto.cs
2026-08-21 22:27:59 +03:00

9 lines
252 B
C#

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; }
}