23 lines
595 B
C#
23 lines
595 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DTS.Common.Interface.TestSetups
|
|
{
|
|
/// <summary>
|
|
/// Describes a record in the TestSetupROIs table
|
|
/// </summary>
|
|
public interface ITestSetupROIRecord
|
|
{
|
|
int TestSetupROIId { get; set; }
|
|
int TestSetupId { get; set; }
|
|
string Suffix { get; set; }
|
|
double ROIStart { get; set; }
|
|
double ROIEnd { get; set; }
|
|
bool IsEnabled { get; set; }
|
|
bool IsDefault { get; set; }
|
|
}
|
|
}
|