9 lines
177 B
JavaScript
9 lines
177 B
JavaScript
function Port(name,input,output,value,max,docs)
|
|
{
|
|
this.name = name;
|
|
this.input = input;
|
|
this.output = output;
|
|
this.value = value;
|
|
this.max = max;
|
|
this.docs = docs;
|
|
} |