blob: c7b90c526d8164475afe41f824da4d6549321130 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
module Model.TimerEdition
( TimerEdition
, newTimerEdition
) where
import Model.Id (..)
type alias TimerEdition =
{ id : Id
, numbers : List Int
}
newTimerEdition id =
{ id = id
, numbers = []
}
|