Example #1
0
 public EdgeSchema(string name)
 {
     Name        = name;
     Constraints = new Constraints();
     Attributes  = new Attributes();
 }
Example #2
0
 public EdgeSchema()
 {
     Constraints = new Constraints();
     Attributes  = new Attributes();
 }
Example #3
0
 public EdgeSchema(string name)
 {
     _name        = name;
     _constraints = new Constraints();
     _attributes  = new Attributes();
 }