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