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