12 lines
204 B
C#
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;
|
|||
|
}
|