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

10 lines
252 B
C#
Raw Normal View History

namespace Sozsoft.SqlQueryManager.Application.Contracts;
2026-02-24 20:44:16 +00:00
public class SqlTemplateDto
{
public string Type { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public string Template { get; set; }
}