Skip to content
Snippets Groups Projects
ecogesture.model.ts 618 B
Newer Older
  • Learn to ignore specific revisions
  • import { EquipmentType, FluidType, Room, Season, Usage } from 'enums'
    
    
    export interface Ecogesture {
      id: string
      shortName: string
      longName: string
      longDescription: string
    
      usage: Usage
    
      fluidTypes: FluidType[]
    
      impactLevel: number
    
      efficiency: number
      difficulty: number
      room: Room[]
      season: Season
      equipment: boolean
    
      equipmentType: EquipmentType[]
    
      equipmentInstallation: boolean
      investment: string | null
      action: boolean
    
      actionName: string | null
      actionDuration: number
    
      objective: boolean
      doing: boolean
    
      viewedInSelection: boolean
    
      _id: string
      _rev?: string
      _type?: string