You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
498 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BarcodeLib
{
/// <summary>
/// Barcode interface for symbology layout.
/// Written by: Brad Barnhill
/// </summary>
interface IBarcode
{
string Encoded_Value
{
get;
}//Encoded_Value
string RawData
{
get;
}//Raw_Data
List<string> Errors
{
get;
}//Errors
}//interface
}//namespace