namespace MtApi.Monitors { public class AvailabilityOrdersEventArgs(List opened, List closed) : EventArgs { /// /// Contains all newly opened orders since the last time the monitor checked the open orders. /// public List Opened { get; private set; } = opened; /// /// Contains all newly closed orders since the last time the monitor checked the open orders. /// public List Closed { get; private set; } = closed; } }