2017-09-27 13:57:50 +13:00

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;
}