| 1234567891011121314151617181920 |
- import {Attr, Str, Model} from '@vuex-orm/core'
- export class OrganizationLicence extends Model{
- static entity = 'organization_licences'
- @Attr(null)
- id!: number | null
- @Str('', {nullable: false})
- licensee!: string
- @Str('', {nullable: true})
- licenceNumber!: string
- @Str('', {nullable: true})
- categorie!: string
- @Str('', {nullable: true})
- validityDate!: string
- }
|