aboutsummaryrefslogtreecommitdiff
path: root/common/src/Common/Model/IncomePage.hs
diff options
context:
space:
mode:
authorJoris2019-11-03 11:28:42 +0100
committerJoris2019-11-03 11:28:42 +0100
commit9dbb4e6f7c2f0edc1126626e2ff498144c6b9947 (patch)
treeda352e0861a2786a3a57dab2397ec7d678b5919b /common/src/Common/Model/IncomePage.hs
parenta267f0bb4566389342c3244d3c082dc2453f4615 (diff)
downloadbudget-9dbb4e6f7c2f0edc1126626e2ff498144c6b9947.tar.gz
budget-9dbb4e6f7c2f0edc1126626e2ff498144c6b9947.tar.bz2
budget-9dbb4e6f7c2f0edc1126626e2ff498144c6b9947.zip
Show income header
Diffstat (limited to 'common/src/Common/Model/IncomePage.hs')
-rw-r--r--common/src/Common/Model/IncomePage.hs18
1 files changed, 18 insertions, 0 deletions
diff --git a/common/src/Common/Model/IncomePage.hs b/common/src/Common/Model/IncomePage.hs
new file mode 100644
index 0000000..c3f478e
--- /dev/null
+++ b/common/src/Common/Model/IncomePage.hs
@@ -0,0 +1,18 @@
+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_header :: IncomeHeader
+ , _incomePage_incomes :: [Income]
+ , _incomePage_totalCount :: Int
+ } deriving (Show, Generic)
+
+instance FromJSON IncomePage
+instance ToJSON IncomePage