16 lines
475 B
C#
16 lines
475 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace DTS.Common.Classes.TestSetups
|
|||
|
|
{
|
|||
|
|
public class SimpleHardware : Tuple<string, string, int, int>
|
|||
|
|
{
|
|||
|
|
public SimpleHardware(string serialNumber, string parentDAS, int dasId, int dasType) : base(serialNumber, parentDAS, dasId, dasType)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
public string SerialNumber => Item1;
|
|||
|
|
public string ParentDAS => Item2;
|
|||
|
|
public int DASId => Item3;
|
|||
|
|
public int DASType => Item4;
|
|||
|
|
}
|
|||
|
|
}
|