/// /// Copyright (c) 2013-2016 Sensus Metering Systems /// using System; using TBF.BenchControl.Generic; namespace TBF.BenchControl.GenericDevices { public interface ICalibInfoCfg : IComponentCfg { /// /// Parameters are displayed in Metrology tab page /// string CalibCertificateNr { get; set; } /// calibration certificate number DateTime CalibDate { get; set; } /// date of calibration DateTime CalibValidDate { get; set; } /// calibration valid until (date) } }