Match TFS Changeset 303335

This commit is contained in:
2022-02-01 16:40:19 -07:00
parent 9090628216
commit baf8f8b1a5
137 changed files with 17051 additions and 13 deletions

22
Shared/IScopeInfo.cs Normal file
View File

@ -0,0 +1,22 @@
using System;
namespace Shared
{
public interface IScopeInfo
{
Enum Enum { get; }
string HTML { get; }
string Title { get; }
string FileName { get; }
int TestValue { get; }
string Header { get; }
string QueryFilter { get; }
string FileNameWithoutExtension { get; }
string EquipmentElementName { get; }
EquipmentConnection EquipmentConnection { get; }
}
}