NotificationMessage.ts 353 B

1234567891011121314151617
  1. import {Str, Model, Uid} from '@vuex-orm/core'
  2. export class NotificationMessage extends Model {
  3. static entity = 'notification_messages'
  4. @Uid()
  5. id!: number | string | null
  6. @Str(null, { nullable: true })
  7. about!: string|null
  8. @Str(null, { nullable: true })
  9. action!: string|null
  10. @Str(null, { nullable: true })
  11. fileName!: string|null
  12. }