2025-06-16 17:24:23 +08:00

12 lines
204 B
C#

namespace Seyounth.Auto.Hs.Runtime.Balances;
public interface IBalance
{
int Id { get; }
Task ConnectAsync();
Task DisconnectAsync();
event Func<decimal, Task> OnWeightChanged;
}