9 lines
252 B
C#
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; }
|
|
}
|