Files
DP44/Common/DTS.CommonCore/.svn/pristine/61/614c45407239b901061c9ad94393f2d7f6ce787e.svn-base

22 lines
663 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
namespace DTS.Common.Interface.TestSetups.Imports.TTS.HardwareScan
{
public interface IHardwareSummaryRecord
{
uint DOut { get; set; }
uint DIn { get; set; }
uint Squib { get; set; }
uint Analog { get; set; }
uint Total { get; }
uint SPS { get; set; }
uint SPD { get; set; }
uint SPT { get; set; }
uint ECM { get; set; }
uint Rack { get; set; }
uint G5 { get; set; }
void UpdateTotal();
void Update(uint analog, uint squib, uint din, uint dout, uint ecm, uint sps, uint spt, uint spd, uint g5,
uint rack);
}
}