Rename to init

This commit is contained in:
2025-09-14 00:46:08 +07:00
parent 8f68502d84
commit 0b1acbb8dc
5 changed files with 23 additions and 25 deletions

View File

@@ -1,14 +0,0 @@
using Orleans;
using static Managing.Common.Enums;
namespace Managing.Domain.Accounts;
[GenerateSerializer]
public class ExchangeApprovalStatus
{
[Id(0)]
public TradingExchanges Exchange { get; set; }
[Id(1)]
public bool IsInitialized { get; set; }
}

View File

@@ -0,0 +1,12 @@
using Orleans;
using static Managing.Common.Enums;
namespace Managing.Domain.Accounts;
[GenerateSerializer]
public class ExchangeInitializedStatus
{
[Id(0)] public TradingExchanges Exchange { get; set; }
[Id(1)] public bool IsInitialized { get; set; }
}