10 lines
278 B
C#
10 lines
278 B
C#
namespace Inspectron.Epson.PrintServer.PrintServices;
|
|
|
|
public interface IPrinter
|
|
{
|
|
public Task InitAsync();
|
|
public Task PrintImageAsync(string path);
|
|
public Task SetFontSizeAsync(int fontSize);
|
|
public Task PrintTextAsync(string text);
|
|
public Task Cut();
|
|
} |