Rename to init
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
12
src/Managing.Domain/Accounts/ExchangeInitializedStatus.cs
Normal file
12
src/Managing.Domain/Accounts/ExchangeInitializedStatus.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user