10 lines
188 B
C#
10 lines
188 B
C#
|
namespace Seyounth.Auto.Hs.Runtime.Printer;
|
|||
|
|
|||
|
public interface IPrinter
|
|||
|
{
|
|||
|
int Id { get; }
|
|||
|
Task ConnectAsync();
|
|||
|
Task DisconnectAsync();
|
|||
|
|
|||
|
Task PrintAsync(string content);
|
|||
|
}
|