Exemplo n.º 1
0
 protected GraphEntityData([NotNull] GraphEntityData graphEntityData)
 {
     Id            = graphEntityData.Id;
     _for          = graphEntityData._for;
     _name         = graphEntityData._name;
     _type         = graphEntityData._type;
     _defaultValue = graphEntityData._defaultValue;
 }
 public NodeData([NotNull] GraphEntityData graphEntityData, [NotNull] string value)
     : base(graphEntityData)
 {
     _value = value;
 }