erp-platform/api/modules/Erp.SqlQueryManager/Erp.SqlQueryManager.Application.Contracts/SmartSaveDto.cs

26 lines
598 B
C#
Raw Normal View History

2025-12-05 22:38:21 +00:00
using System;
namespace Erp.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; }
}