7 lines
186 B
C#
7 lines
186 B
C#
namespace Inspectron.Epson.PrintServer.Printers.Utils;
|
|
|
|
public interface IReceiptConverterFactory
|
|
{
|
|
IReceiptConverter Create(int receiptType, int lineWidth, int bigFontLineWidth);
|
|
}
|