11 lines
237 B
C#

namespace Adaptation.FileHandlers.OpenInsightMetrologyViewer;
public interface IBarcodeDevice
{
public string Name { get; }
public string Path { get; }
public string VendorId { get; }
public string ProductId { get; }
}