OrganizationArticle.ts 266 B

1234567891011121314151617
  1. import {Str, Model, Uid} from '@vuex-orm/core'
  2. export class OrganizationArticle extends Model {
  3. static entity = 'organization_articles'
  4. @Uid()
  5. id!: number | string | null
  6. @Str('')
  7. title!: string
  8. @Str('')
  9. link!: string
  10. @Str('')
  11. date!: string
  12. }