Files
Print_server/Inspectron.Epson/PrintServer/PrintServices/IPrinter.cs
2026-02-04 14:20:08 +01:00

11 lines
291 B
C#

using Inspectron.Epson.PrintServer.Printers.Utils;
namespace Inspectron.Epson.PrintServer.PrintServices;
public interface IPrinter
{
public Task InitAsync();
public Task PrintImageAsync(string path);
public Task PrintAsync(List<PrintCommand> commands);
public Task Cut();
}