Example #1
0
 public PropertyGroup(IEnumerable <PropertyGroupMember> Properties, string Label = null, string Condition = null)
     : base(nameof(PropertyGroup), Label, Condition)
 {
     this.Properties = PropertyGroupMembers.Create(Properties);
 }
Example #2
0
 public PropertyGroup()
     : base(nameof(PropertyGroup), string.Empty, string.Empty)
 {
     Properties = new PropertyGroupMembers();
 }