12 lines
223 B
C#
12 lines
223 B
C#
|
namespace Seyounth.Auto.Hs.Runtime.Printer;
|
|||
|
|
|||
|
public interface IPrinterService
|
|||
|
{
|
|||
|
IReadOnlyList<IPrinter> Printers { get; }
|
|||
|
|
|||
|
Task StartAsync();
|
|||
|
|
|||
|
Task StopAsync();
|
|||
|
|
|||
|
Task PrintAsync(int id, string content);
|
|||
|
}
|