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