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