Skip to content
Snippets Groups Projects
userProfile.model.ts 367 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
    
      haveSeenFavoriteModal: boolean
    
      isFirstConnection: boolean
    
      haveSeenOldFluidModal: DateTime | boolean
    
    Yoan VALLET's avatar
    Yoan VALLET committed
      notificationEcogesture: string[]
    
      report: ReportAttributes
    
    Yoan VALLET's avatar
    Yoan VALLET committed
    }