Exemplo n.º 1
0
 /**
  * Constructs a new attribute schema with custom properties.
  */
 public AttributeSchema(string _attr_name, Attribute.AttrType _attr_type, Properties _props)
 {
     name  = _attr_name.ToLowerInvariant();
     type  = _attr_type;
     props = _props;
 }
Exemplo n.º 2
0
 /**
  * Constructs an attribute schema.
  */
 public AttributeSchema(string _attr_name, Attribute.AttrType _attr_type)
 {
     name = _attr_name.ToLowerInvariant();
     type = _attr_type;
 }