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

26 lines
602 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
using System;
namespace Sozsoft.SqlQueryManager.Application.Contracts;
/// <summary>
/// Input for smart save operation
/// </summary>
public class SmartSaveInputDto
{
public string SqlText { get; set; }
public string DataSourceCode { get; set; }
public string Name { get; set; }
public string Description { get; set; }
}
/// <summary>
/// Result of smart save operation
/// </summary>
public class SmartSaveResultDto
{
public string ObjectType { get; set; }
public Guid ObjectId { get; set; }
public bool Deployed { get; set; }
public string Message { get; set; }
}