10 lines
188 B
C#
Raw Permalink Normal View History

2025-06-04 09:42:48 +08:00
namespace Seyounth.Auto.Hs.Runtime.Printer;
public interface IPrinter
{
int Id { get; }
Task ConnectAsync();
Task DisconnectAsync();
Task PrintAsync(string content);
}