import {Str, Model, Uid, Attr} from '@vuex-orm/core' export class Network extends Model { static entity = 'networks' @Uid() id!: number | string | null @Str('') name!: string @Attr(null) networkOrganizationId!: number | null }