8 lines
238 B
C#
8 lines
238 B
C#
namespace EpsonReceiptPrinter;
|
|
|
|
public interface IReceiptPrinter
|
|
{
|
|
Task PrintAsync(Receipt receipt, CancellationToken cancellationToken = default);
|
|
Task PrintRawAsync(byte[] data, CancellationToken cancellationToken = default);
|
|
}
|