import {Attr, Str, Model} from '@vuex-orm/core' 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 }