Update strategies agent return

This commit is contained in:
2025-08-06 19:47:13 +07:00
parent a0bd2e2100
commit b1c1c8725d
3 changed files with 6 additions and 5 deletions

View File

@@ -66,7 +66,7 @@ namespace Managing.Api.Models.Responses
/// <summary>
/// Dictionary of all positions executed by this strategy, keyed by position identifier
/// </summary>
public Dictionary<Guid, Position> Positions { get; set; } = new Dictionary<Guid, Position>();
public List<Position> Positions { get; set; } = new List<Position>();
public Guid Identifier { get; set; }