Binding.js 98 B

1234567891011
  1. class Binding {
  2. constructor( name = '' ) {
  3. this.name = name;
  4. }
  5. }
  6. export default Binding;