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

View File

@@ -0,0 +1,12 @@
using DTS.Common.Base;
namespace DTS.Common.Interface
{
public interface IMenuViewModel : IBaseViewModel
{
/// <summary>
/// Gets the Menu View.
/// </summary>
IMenuView View { get; }
}
}

View File

@@ -0,0 +1,6 @@
using DTS.Common.Base;
namespace DTS.Common.Interface
{
public interface ILevelTriggerView : IBaseView { }
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 448 B

View File

@@ -0,0 +1,8 @@
namespace Athena.Resources
{
internal static class ResourceNames
{
public const string EntryStoryboardName = "InTransition";
public const string ExitStoryboardName = "OutTransition";
}
}