using System; namespace Krs.Ats.IBNet { /// /// Market Depth Operation /// [Serializable()] public enum MarketDepthOperation : int { /// /// Insert (insert this new order into the row identified by 'position') /// Insert = 0, /// /// Update (update the existing order in the row identified by 'position') /// Update = 1, /// /// Delete (delete the existing order at the row identified by 'position') /// Delete = 2 } }