/// <summary> /// Initializes a new instance of the <see cref="PropertyBagValue"/> type. /// </summary> /// <param name="value">Value to use.</param> /// <param name="type">Type of value.</param> public PropertyBagValue(string value, PropertyBagValueType type) { Value = value; Type = type; }
/// <summary> /// Initializes a new instance of the <see cref="PropertyBagValue"/> type. /// </summary> /// <param name="value">Value to use.</param> /// <param name="type">Type of value.</param> public PropertyBagValue(string value, PropertyBagValueType type) { this.Value = value; this.Type = type; }