Skip to content
Snippets Groups Projects
userProfile.model.ts 335 B
Newer Older
  • Learn to ignore specific revisions
  • import { DateTime } from 'luxon'
    
    import { ReportAttributes } from './report.model'
    
    Yoan VALLET's avatar
    Yoan VALLET committed
    export interface UserProfile {
      id: string
      level: number
      challengeTypeHash: string
      ecogestureHash: string
      haveSeenWelcomeModal: boolean
    
    Yoan VALLET's avatar
    Yoan VALLET committed
      haveSeenOldFluidModal: DateTime | false
    
    Yoan VALLET's avatar
    Yoan VALLET committed
      notificationEcogesture: string[]
    
      report: ReportAttributes
    
    Yoan VALLET's avatar
    Yoan VALLET committed
    }