tbf/TBF/Rig/GenericDevices/ICalibInfoCfg.cs
2021-10-26 19:38:09 +02:00

19 lines
525 B
C#

///
/// Copyright (c) 2018 Sensus Metering Systems
///
using System;
using TBF.Rig.Generic;
namespace TBF.Rig.GenericDevices
{
public interface ICalibInfoCfg : IComponentCfg
{
///
/// Parameters 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)
}
}