internal ConfigurationValue(object value, Guid guid, ConfigurationOptionType type)
 {
     this.Guid  = guid;
     this.Value = value;
     this.Type  = type;
 }
 internal ConfigurationValue(object value, ConfigurationOptionType type)
     : this(value, Guid.NewGuid(), type)
 {
 }