OrganizationNetwork.ts 181 B

12345678
  1. import {Str, Model, Uid} from '@vuex-orm/core'
  2. export class OrganizationNetwork extends Model {
  3. static entity = 'organization_networks'
  4. @Uid()
  5. id!: number | string | null
  6. }