This commit is contained in:
2026-04-17 14:55:32 -04:00
commit bc3ac1d4c9
18017 changed files with 4371742 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
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; }
}
}