6 lines
153 B
C#
6 lines
153 B
C#
namespace Inspectron.Epson.PrintServer;
|
|
|
|
public interface IPrintJobSource
|
|
{
|
|
Task<PrintJob> GetNextJobAsync(CancellationToken cancellationToken);
|
|
} |