using System.Collections.Generic; namespace BayesSharp { public class TagDictionary { public TagDictionary() { Items = new Dictionary>(); } public Dictionary> Items { get; private set; } public TagData SystemTag { get; set; } } }