11 lines
291 B
C#
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();
|
|
} |