2025-04-14 16:09:10 +08:00

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);
}