using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace CryptanalysisCore { public class NearbyLetters { public Dictionary PreviousLetters { get; private set; } public Dictionary NextLetters { get; private set; } public NearbyLetters(Dictionary previousLetters, Dictionary nextLetters) { PreviousLetters = previousLetters; NextLetters = nextLetters; } } }