using System.Collections.Generic; using System.Linq; namespace Domain.Input { public class IxReader : SequentialInputReader { public IxReader(KeyHistory history) : base(history, new List{ 0x49, 0x58 }) { } } }