Ejemplo n.º 1
0
 public IconAndTags(IconColorCategory iconColorCategory, string tagKey, string tagValue)
 {
     IconColorCategory = iconColorCategory;
     Tags = new List <KeyValuePair <string, string> >
     {
         new KeyValuePair <string, string>(tagKey, tagValue)
     };
 }
Ejemplo n.º 2
0
 public IconAndTags(IconColorCategory iconColorCategory, List <KeyValuePair <string, string> > tags)
 {
     IconColorCategory = iconColorCategory;
     Tags = tags;
 }
Ejemplo n.º 3
0
 public IconAndTags(IconColorCategory iconColorCategory)
 {
     IconColorCategory = iconColorCategory;
     Tags = new List <KeyValuePair <string, string> >();
 }