using System.ComponentModel.DataAnnotations.Schema;
namespace ECMJobRunner.Application.Common.Dtos
{
///
/// Result of a main query execution
///
public class MainQueryResult
{
///
/// Return value from the main query (expected: null for success)
///
[Column("Return Value")]
public int? ReturnValue { get; set; }
}
}