Files
DP44/Common/DTS.CommonCore/Interface/Groups/ITestSetupGroupRecord.cs
2026-04-17 14:55:32 -04:00

32 lines
1023 B
C#

namespace DTS.Common.Interface.Groups
{
/// <summary>
/// describes a record in the database for a test setup group
/// </summary>
public interface ITestSetupGroupRecord
{
/// <summary>
/// database id of group
/// </summary>
int GroupId { get; set; }
/// <summary>
/// display order of group
/// </summary>
int DisplayOrder { get; set; }
/// <summary>
/// Position field (ISO 13499) for group, if available
/// [groups can be made of mixed position fields]
/// </summary>
string Position { get; set; }
/// <summary>
/// Test Object field (ISO 13499) for group, if available
/// [groups can be made of mixed test object fields]
/// </summary>
string TestObjectType { get; set; }
/// <summary>
/// database id of test setup group belongs to
/// </summary>
int TestSetupId { get; set; }
}
}