OrganizationNetwork.ts 418 B

123456789101112131415161718192021
  1. import {Attr, Str} from '@vuex-orm/core'
  2. import {Model} from '@/models/Model'
  3. export class OrganizationLicence extends Model{
  4. static entity = 'organization_licences'
  5. @Attr(null)
  6. id!: number | null
  7. @Str('', {nullable: false})
  8. licensee!: string
  9. @Str('', {nullable: true})
  10. licenceNumber!: string
  11. @Str('', {nullable: true})
  12. categorie!: string
  13. @Str('', {nullable: true})
  14. validityDate!: string
  15. }