Files
DP44/Common/DTS.Common/.svn/pristine/2e/2e23643c68992c4c7df18a7044e822d7f8e0a98a.svn-base
2026-04-17 14:55:32 -04:00

32 lines
1023 B
Plaintext

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; }
}
}