import {Str, Model, Uid} from '@vuex-orm/core' export class ResidenceArea extends Model { static entity = 'residence_areas' @Uid() id!: number | string | null @Str(null, { nullable: true }) label!: string|null }