示例#1
0
文件: Category.cs 项目: ifle/Site
 public IconAndTags(IconColorCategory iconColorCategory, string tagKey, string tagValue)
 {
     IconColorCategory = iconColorCategory;
     Tags = new List <KeyValuePair <string, string> >
     {
         new KeyValuePair <string, string>(tagKey, tagValue)
     };
 }
示例#2
0
文件: Category.cs 项目: ifle/Site
 public IconAndTags(IconColorCategory iconColorCategory, List <KeyValuePair <string, string> > tags)
 {
     IconColorCategory = iconColorCategory;
     Tags = tags;
 }
示例#3
0
文件: Category.cs 项目: ifle/Site
 public IconAndTags(IconColorCategory iconColorCategory)
 {
     IconColorCategory = iconColorCategory;
     Tags = new List <KeyValuePair <string, string> >();
 }