feat(Core): update DTOs and shared models
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
namespace FinlyticCore.Models.Trades;
|
||||
|
||||
/// <summary>
|
||||
/// Status of a proposed/active trade lifecycle.
|
||||
/// </summary>
|
||||
public enum TradeStatus
|
||||
{
|
||||
Proposed = 0,
|
||||
Active = 1,
|
||||
Closed = 2,
|
||||
Expired = 3,
|
||||
Rejected = 4,
|
||||
Invalidated = 5
|
||||
}
|
||||
Reference in New Issue
Block a user