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