6 lines
135 B
C#
6 lines
135 B
C#
namespace Inspectron.Epson.Queue;
|
|
|
|
public interface IPrintService
|
|
{
|
|
Task<PrintResult> PrintAsync(string printerIp, PrintJob job);
|
|
} |