/// <summary>
 /// Init constructor.
 /// </summary>
 public JSonMemberAttribute(string name, Double defaultValue)
 {
     Name = name;
     DefaultValue = new JSonDecimalObject<Double>(defaultValue);
 }
 /// <summary>
 /// Init constructor.
 /// </summary>
 public JSonMemberAttribute(string name, Int32 defaultValue)
 {
     Name = name;
     DefaultValue = new JSonDecimalObject<Int32>(defaultValue);
 }