예제 #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> >();
 }