blob: 8ee26acd8272f5bca9b8d2b23b64682d1781a390 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
module Model.EditCategory
( EditCategory(..)
) where
import Data.Text (Text)
import Common.Model (CategoryId)
data EditCategory = EditCategory
{ _editCategory_id :: CategoryId
, _editCategory_name :: Text
, _editCategory_color :: Text
} deriving (Show)
|