diff options
Diffstat (limited to 'scratch/habit-screens/client/src/State.elm')
-rw-r--r-- | scratch/habit-screens/client/src/State.elm | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/scratch/habit-screens/client/src/State.elm b/scratch/habit-screens/client/src/State.elm index 3369d843ffbe..c5cdadf3afa0 100644 --- a/scratch/habit-screens/client/src/State.elm +++ b/scratch/habit-screens/client/src/State.elm @@ -22,13 +22,19 @@ type View type HabitType - = Daily - | Weekly - | Yearly + = Morning + | Evening + | DayOfWeek + | Payday + | FirstOfTheMonth + | FirstOfTheYear type alias Habit = - String + { label : String + , habitType : HabitType + , minutesDuration : Int + } type alias Model = |