aboutsummaryrefslogtreecommitdiff
path: root/common/src/Common/Model/PaymentPage.hs
diff options
context:
space:
mode:
authorJoris2019-11-17 19:55:22 +0100
committerJoris2019-11-17 19:55:22 +0100
commit3c67fcf1d524811a18f0c4db3ef6eed1270b9a12 (patch)
treed0433d15c788d8add30aa828457ffb7a533ab926 /common/src/Common/Model/PaymentPage.hs
parentc0ea63f8c1a8c7123b78798cec99726b113fb1f3 (diff)
downloadbudget-3c67fcf1d524811a18f0c4db3ef6eed1270b9a12.tar.gz
budget-3c67fcf1d524811a18f0c4db3ef6eed1270b9a12.tar.bz2
budget-3c67fcf1d524811a18f0c4db3ef6eed1270b9a12.zip
Hide date from monthly payments
Diffstat (limited to 'common/src/Common/Model/PaymentPage.hs')
-rw-r--r--common/src/Common/Model/PaymentPage.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/common/src/Common/Model/PaymentPage.hs b/common/src/Common/Model/PaymentPage.hs
index 3b18bb6..94203a2 100644
--- a/common/src/Common/Model/PaymentPage.hs
+++ b/common/src/Common/Model/PaymentPage.hs
@@ -5,11 +5,13 @@ module Common.Model.PaymentPage
import Data.Aeson (FromJSON, ToJSON)
import GHC.Generics (Generic)
+import Common.Model.Frequency (Frequency)
import Common.Model.Payment (Payment)
import Common.Model.PaymentHeader (PaymentHeader)
data PaymentPage = PaymentPage
{ _paymentPage_page :: Int
+ , _paymentPage_frequency :: Frequency
, _paymentPage_header :: PaymentHeader
, _paymentPage_payments :: [Payment]
, _paymentPage_totalCount :: Int