Add project files.
This commit is contained in:
10
Inspectron.Epson/PrintServer/PrintServices/IPrinter.cs
Normal file
10
Inspectron.Epson/PrintServer/PrintServices/IPrinter.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
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();
|
||||
}
|
||||
Reference in New Issue
Block a user