aboutsummaryrefslogtreecommitdiff
path: root/common/src/Common/Model/IncomesAndCount.hs
diff options
context:
space:
mode:
Diffstat (limited to 'common/src/Common/Model/IncomesAndCount.hs')
-rw-r--r--common/src/Common/Model/IncomesAndCount.hs16
1 files changed, 0 insertions, 16 deletions
diff --git a/common/src/Common/Model/IncomesAndCount.hs b/common/src/Common/Model/IncomesAndCount.hs
deleted file mode 100644
index 4365180..0000000
--- a/common/src/Common/Model/IncomesAndCount.hs
+++ /dev/null
@@ -1,16 +0,0 @@
-module Common.Model.IncomesAndCount
- ( IncomesAndCount(..)
- ) where
-
-import Data.Aeson (FromJSON, ToJSON)
-import GHC.Generics (Generic)
-
-import Common.Model.Income (Income)
-
-data IncomesAndCount = IncomesAndCount
- { _incomesAndCount_incomes :: [Income]
- , _incomesAndCount_count :: Int
- } deriving (Show, Generic)
-
-instance FromJSON IncomesAndCount
-instance ToJSON IncomesAndCount