using System;
namespace Krs.Ats.IBNet
{
///
/// Tick Snapshot End Event Arguments
///
[Serializable()]
public class TickSnapshotEndEventArgs : EventArgs
{
private int requestId;
///
/// Full Constructor
///
/// The ticker ID of the request to which this row is responding.
public TickSnapshotEndEventArgs(int requestId)
{
this.requestId = requestId;
}
///
/// Uninitialized Constructor for Serialization
///
public TickSnapshotEndEventArgs()
{
}
///
/// The ticker ID of the request to which this row is responding.
///
public int RequestId
{
get { return requestId; }
set { requestId = value; }
}
}
}