예제 #1
0
 /// <summary>
 /// Create a new tag
 /// </summary>
 public Tag()
 {
     TagId  = string.Empty;
     Name   = string.Empty;
     Count  = new ResultValueAggregate();
     Values = new List <TagValue>();
 }
예제 #2
0
 /// <summary>
 /// Create a new value element for a tag
 /// </summary>
 public TagValue()
 {
     Count = new ResultValueAggregate();
     Id    = string.Empty;
     Value = string.Empty;
 }