mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-27 18:47:55 +00:00
15 lines
589 B
C#
15 lines
589 B
C#
namespace MtApi.Monitors
|
|
{
|
|
public class AvailabilityOrdersEventArgs(List<MtOrder> opened, List<MtOrder> closed) : EventArgs
|
|
{
|
|
/// <summary>
|
|
/// Contains all newly opened orders since the last time the monitor checked the open orders.
|
|
/// </summary>
|
|
public List<MtOrder> Opened { get; private set; } = opened;
|
|
/// <summary>
|
|
/// Contains all newly closed orders since the last time the monitor checked the open orders.
|
|
/// </summary>
|
|
public List<MtOrder> Closed { get; private set; } = closed;
|
|
}
|
|
}
|