ContactPoint.ts 363 B

1234567891011121314151617181920
  1. import {Attr, Str, Model} from '@vuex-orm/core'
  2. export class ContactPoint extends Model{
  3. static entity = 'contact_points'
  4. @Attr(null)
  5. id!: number | null
  6. @Str('', {nullable: true})
  7. email!: string
  8. @Str('', {nullable: true})
  9. telphone!: string
  10. @Str('', {nullable: true})
  11. mobilPhone!: string
  12. @Str('', {nullable: true})
  13. faxNumber!: string
  14. }