import {Attr, Str} from '@vuex-orm/core' import {Model} from '@/models/Model' export class ContactPoint extends Model{ static entity = 'contact_points' @Attr(null) id!: number | null @Str('', {nullable: true}) email!: string @Str('', {nullable: true}) telphone!: string @Str('', {nullable: true}) mobilPhone!: string @Str('', {nullable: true}) faxNumber!: string }