1
0
Fork 0
mirror of synced 2024-09-10 06:26:02 +12:00
budibase/packages/server/src/integrations/Integration.js

8 lines
148 B
JavaScript
Raw Normal View History

2021-01-14 03:11:53 +13:00
class Field {
constructor(type, defaultValue, required) {
this.type = type
this.default = defaultValue
this.required = required
}
}