14 lines
281 B
C#
14 lines
281 B
C#
namespace Seyounth.Hyosung.Core.Printer;
|
|
|
|
public interface IHyosungPrinter
|
|
{
|
|
Task StartAsync(CancellationToken token);
|
|
|
|
Task StopAsync(CancellationToken token);
|
|
|
|
|
|
|
|
Task PrintMasterLabelAsync(int color, string trayCode);
|
|
|
|
Task PrintSubLabelAsync(string trayCode);
|
|
} |