tbf/TBF/Rig/GenericDevices/ICalibInfoCfg.cs

20 lines
630 B
C#

///
/// Copyright (c) 2018-2023 Sensus Slovensko a.s.
///
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 ID
string CertPath { get; set; } /// Path to a calibration certificate PDF document
DateTime CalibDate { get; set; } /// Date of calibration
DateTime CalibValidDate { get; set; } /// Calibration is valid until (date)
}
}