using System.Collections.Generic; namespace XRLib.Collections { public class TrieNode { public Dictionary Children { get; private set; } public bool IsEndOfWord { get; set; } public TrieNode() { Children = new Dictionary(); IsEndOfWord = false; } } }