OrganizationLicence.ts 399 B

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