aboutsummaryrefslogtreecommitdiff
path: root/common/src/Common/Model/CreatedPayment.hs
diff options
context:
space:
mode:
Diffstat (limited to 'common/src/Common/Model/CreatedPayment.hs')
-rw-r--r--common/src/Common/Model/CreatedPayment.hs17
1 files changed, 17 insertions, 0 deletions
diff --git a/common/src/Common/Model/CreatedPayment.hs b/common/src/Common/Model/CreatedPayment.hs
new file mode 100644
index 0000000..c1bba29
--- /dev/null
+++ b/common/src/Common/Model/CreatedPayment.hs
@@ -0,0 +1,17 @@
+module Common.Model.CreatedPayment
+ ( CreatedPayment(..)
+ ) where
+
+import Data.Aeson (FromJSON, ToJSON)
+import GHC.Generics (Generic)
+
+import Common.Model.Payment (Payment)
+import Common.Model.PaymentCategory (PaymentCategory)
+
+data CreatedPayment = CreatedPayment
+ { _createdPayment_payment :: Payment
+ , _createdPayment_paymentCategory :: PaymentCategory
+ } deriving (Show, Generic)
+
+instance FromJSON CreatedPayment
+instance ToJSON CreatedPayment