BindGroup.js 180 B

12345678910111213141516
  1. let _id = 0;
  2. class BindGroup {
  3. constructor( name = '', bindings = [] ) {
  4. this.name = name;
  5. this.bindings = bindings;
  6. this.id = _id ++;
  7. }
  8. }
  9. export default BindGroup;