19 lines
543 B
C#
19 lines
543 B
C#
///
|
|
/// Copyright (c) 2018 Sensus Metering Systems
|
|
///
|
|
using System;
|
|
using TBF.BenchControl.Generic;
|
|
|
|
namespace TBF.BenchControl.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)
|
|
}
|
|
}
|