# -*- coding: utf-8 -*-

from enum import Enum


class Feedback(str, Enum):
    a_little_cold = "a little cold"
    so_cold = "so cold"
    a_little_hot = "a little hot"
    so_hot = "so hot"
    noisy_or_blowy = "noisy or blowy"
    so_stuffy = "so stuffy"
    more_sunshine = "more sunshine"
    less_sunshine = "less sunshine"
    send_a_repairman = "send a repairman"
    switch_off = "switch off"
    nice = "nice"
    switch_on = "switch on"