NotificationMessage.ts 323 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 | null
  6. @Str('', { nullable: true })
  7. about!: string
  8. @Str('', { nullable: true })
  9. action!: string
  10. @Str('', { nullable: true })
  11. fileName!: string
  12. }