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