12 lines
193 B
C#
Raw Permalink Normal View History

2025-06-04 09:42:48 +08:00
namespace Seyounth.Auto.Hs.Runtime.Scanner;
public interface IScanner
{
int Id { get; }
Task ConnectAsync();
Task DisconnectAsync();
event Action<string> OnScanned;
}