diff options
author | Joris | 2019-11-17 19:55:22 +0100 |
---|---|---|
committer | Joris | 2019-11-17 19:55:22 +0100 |
commit | 3c67fcf1d524811a18f0c4db3ef6eed1270b9a12 (patch) | |
tree | d0433d15c788d8add30aa828457ffb7a533ab926 /common | |
parent | c0ea63f8c1a8c7123b78798cec99726b113fb1f3 (diff) |
Hide date from monthly payments
Diffstat (limited to 'common')
-rw-r--r-- | common/src/Common/Model/PaymentPage.hs | 2 |
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 |