using System;
namespace Erp.SqlQueryManager.Application.Contracts;
///
/// Input for smart save operation
///
public class SmartSaveInputDto
{
public string SqlText { get; set; }
public string DataSourceCode { get; set; }
public string Name { get; set; }
public string Description { get; set; }
}
///
/// Result of smart save operation
///
public class SmartSaveResultDto
{
public string ObjectType { get; set; }
public Guid ObjectId { get; set; }
public bool Deployed { get; set; }
public string Message { get; set; }
}