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