Organization.ts 187 B

1234567
  1. import {Attr, Str, Model} from "@vuex-orm/core";
  2. export default class Organization extends Model {
  3. static entity = 'organizations'
  4. @Attr(1) id!: any
  5. @Str('Cluses') name!: string
  6. }