wasBayesSharp – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System.Collections.Generic;
2  
3 namespace BayesSharp
4 {
5 public class TagDictionary<TTokenType, TTagType>
6 {
7 public TagDictionary()
8 {
9 Items = new Dictionary<TTagType, TagData<TTokenType>>();
10 }
11 public Dictionary<TTagType, TagData<TTokenType>> Items { get; private set; }
12 public TagData<TTokenType> SystemTag { get; set; }
13 }
14 }