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