Network.ts 245 B

1234567891011121314
  1. import {Str, Model, Uid, Attr} from '@vuex-orm/core'
  2. export class Network extends Model {
  3. static entity = 'networks'
  4. @Uid()
  5. id!: number | string | null
  6. @Str('')
  7. name!: string
  8. @Attr(null)
  9. networkOrganizationId!: number | null
  10. }