public partial class TickOrder : Order { public long Ticks { get; set; } public TickOrder(OrderType type, long ticks) { this.Category = OrderCategory.TICK; this.Type = type; this.Ticks = ticks; } }