aboutsummaryrefslogtreecommitdiff
path: root/common/src/Common/Model/PaymentPage.hs
diff options
context:
space:
mode:
Diffstat (limited to 'common/src/Common/Model/PaymentPage.hs')
-rw-r--r--common/src/Common/Model/PaymentPage.hs4
1 files changed, 3 insertions, 1 deletions
diff --git a/common/src/Common/Model/PaymentPage.hs b/common/src/Common/Model/PaymentPage.hs
index 31039c7..76c7511 100644
--- a/common/src/Common/Model/PaymentPage.hs
+++ b/common/src/Common/Model/PaymentPage.hs
@@ -7,9 +7,11 @@ import GHC.Generics (Generic)
import Common.Model.Payment (Payment)
import Common.Model.PaymentCategory (PaymentCategory)
+import Common.Model.PaymentHeader (PaymentHeader)
data PaymentPage = PaymentPage
- { _paymentPage_payments :: [Payment]
+ { _paymentPage_header :: PaymentHeader
+ , _paymentPage_payments :: [Payment]
, _paymentPage_paymentCategories :: [PaymentCategory]
, _paymentPage_totalCount :: Int
} deriving (Show, Generic)