Files
DP44/Common/DTS.Common.DAS.Concepts/.svn/pristine/4c/4cf4cedadab35672732e3e0f17876d1c18618f09.svn-base

28 lines
720 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
/*
* ICalibratable.cs
*
* Copyright © 2010
* Diversified Technical Systems, Inc.
* All Rights Reserved.
*/
namespace DTS.DAS.Concepts
{ ///
/// <summary>
/// Representation of the ability to calibrate.
/// </summary>
///
public interface ICalibratable
{ //
// Properties required for rudimentary calibration.
//
string SerialNumber { get; set; }
double Sensitivity { get; set; }
double BatteryVolts { get; set; }
double VddVolts { get; set; }
double SignalConditioningVolts { get; set; }
// access for generic attributes.
}
}