示例#1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="HyperflexFeatureLimitEntry" /> class.
 /// </summary>
 /// <param name="Name">Application setting identifier  .</param>
 /// <param name="Value">Application setting value   .</param>
 /// <param name="Constraint">Conditions to be met to apply the AppSetting   .</param>
 public HyperflexFeatureLimitEntry(string Name = default(string), string Value = default(string), HyperflexAppSettingConstraint Constraint = default(HyperflexAppSettingConstraint))
 {
     this.Name       = Name;
     this.Value      = Value;
     this.Constraint = Constraint;
 }
示例#2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="HyperflexServerModelEntry" /> class.
 /// </summary>
 /// <param name="Name">Application setting identifier  .</param>
 /// <param name="Value">Application setting value   .</param>
 /// <param name="Constraint">Conditions to be met to apply the AppSetting   .</param>
 public HyperflexServerModelEntry(string Name = default(string), string Value = default(string), HyperflexAppSettingConstraint Constraint = default(HyperflexAppSettingConstraint))
 {
     this.Name       = Name;
     this.Value      = Value;
     this.Constraint = Constraint;
 }
示例#3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="HyperflexServerFirmwareVersionEntry" /> class.
 /// </summary>
 /// <param name="Name">Application setting identifier  .</param>
 /// <param name="Value">Application setting value   .</param>
 /// <param name="Constraint">Conditions to be met to apply the AppSetting  .</param>
 /// <param name="Label">Display name for server firmware bundle version in UI   .</param>
 public HyperflexServerFirmwareVersionEntry(string Name = default(string), string Value = default(string), HyperflexAppSettingConstraint Constraint = default(HyperflexAppSettingConstraint), string Label = default(string))
 {
     this.Name       = Name;
     this.Value      = Value;
     this.Constraint = Constraint;
     this.Label      = Label;
 }