12 lines
274 B
C#
12 lines
274 B
C#
namespace Adaptation.FileHandlers.OpenInsightMetrologyViewer;
|
|
|
|
public interface IBarcodeRecord
|
|
{
|
|
|
|
public string Barcode { get; }
|
|
public string Date { get; }
|
|
public BarcodeDevice Device { get; }
|
|
public string Id { get; }
|
|
public string ServerId { get; }
|
|
|
|
} |