aboutsummaryrefslogtreecommitdiff
path: root/common/src/Common/Model/IncomePage.hs
diff options
context:
space:
mode:
Diffstat (limited to 'common/src/Common/Model/IncomePage.hs')
-rw-r--r--common/src/Common/Model/IncomePage.hs19
1 files changed, 0 insertions, 19 deletions
diff --git a/common/src/Common/Model/IncomePage.hs b/common/src/Common/Model/IncomePage.hs
deleted file mode 100644
index 977b0ea..0000000
--- a/common/src/Common/Model/IncomePage.hs
+++ /dev/null
@@ -1,19 +0,0 @@
-module Common.Model.IncomePage
- ( IncomePage(..)
- ) where
-
-import Data.Aeson (FromJSON, ToJSON)
-import GHC.Generics (Generic)
-
-import Common.Model.Income (Income)
-import Common.Model.IncomeHeader (IncomeHeader)
-
-data IncomePage = IncomePage
- { _incomePage_page :: Int
- , _incomePage_header :: IncomeHeader
- , _incomePage_incomes :: [Income]
- , _incomePage_totalCount :: Int
- } deriving (Eq, Show, Generic)
-
-instance FromJSON IncomePage
-instance ToJSON IncomePage