aboutsummaryrefslogtreecommitdiff
path: root/server/src/Model/CreateCategory.hs
blob: dae061b60a01597058ca433f31fe3a39b80120aa (plain)
1
2
3
4
5
6
7
8
9
10
module Model.CreateCategory
  ( CreateCategory(..)
  ) where

import           Data.Text (Text)

data CreateCategory = CreateCategory
  { _createCategory_name  :: Text
  , _createCategory_color :: Text
  } deriving (Show)