mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-31 12:37:47 +00:00
18 lines
449 B
C#
18 lines
449 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MtApi.Monitors
|
|
{
|
|
public class AvailabilityOrdersEventArgs : EventArgs
|
|
{
|
|
public AvailabilityOrdersEventArgs(List<MtOrder> opened, List<MtOrder> closed)
|
|
{
|
|
Opened = opened;
|
|
Closed = closed;
|
|
}
|
|
|
|
public List<MtOrder> Opened { get; private set; }
|
|
public List<MtOrder> Closed { get; private set; }
|
|
}
|
|
}
|