ContactPoint.ts 393 B

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