blob: bbe1d4581408f4410a2165a059d696fc24171b09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{-# LANGUAGE TemplateHaskell #-}
module Model.JobKind
( JobKind(..)
) where
import Database.Persist.TH
data JobKind =
MonthlyPaymentJob
deriving (Eq, Show, Read)
derivePersistField "JobKind"
|