25 lines
598 B
C#
25 lines
598 B
C#
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; }
|
|
}
|