Skip to content

Commit

Permalink
Eze: remove extra internal accessors (#7561)
Browse files Browse the repository at this point in the history
* feat: init eze-brokerage

* remove: eze from market collection

* remove: extra comma

* feat: add missing Security support

* feat: add Eze Order Properties

* feat: description, less code, remove extra configs

* Minor changes

* remove: internal accessor from EzeOrderProperties

---------

Co-authored-by: Martin Molinero <[email protected]>
  • Loading branch information
Romazes and Martin-Molinero authored Nov 10, 2023
1 parent 978494c commit dd27a65
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Common/Orders/EzeOrderProperties.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@ public class EzeOrderProperties: OrderProperties
/// <summary>
/// Route name as shown in Eze EMS.
/// </summary>
public string Route { get; internal set; }
public string Route { get; set; }

/// <summary>
/// Semi-colon separated values that represent either Trade or Neutral accounts the user has permission
/// e.g.,TAL;TEST;USER1;TRADE or TAL;TEST;USER2;NEUTRAL
/// </summary>
public string Account { get; internal set; }
public string Account { get; set; }

/// <summary>
/// User message/notes
/// </summary>
public string Notes { get; internal set; }
public string Notes { get; set; }

/// <summary>
/// Initializes a new instance of the <see cref="EzeOrderProperties"/> class
Expand Down

0 comments on commit dd27a65

Please sign in to comment.