aboutsummaryrefslogtreecommitdiff
path: root/common/src/Common/Model/PaymentStats.hs
diff options
context:
space:
mode:
Diffstat (limited to 'common/src/Common/Model/PaymentStats.hs')
-rw-r--r--common/src/Common/Model/PaymentStats.hs10
1 files changed, 10 insertions, 0 deletions
diff --git a/common/src/Common/Model/PaymentStats.hs b/common/src/Common/Model/PaymentStats.hs
new file mode 100644
index 0000000..2dea640
--- /dev/null
+++ b/common/src/Common/Model/PaymentStats.hs
@@ -0,0 +1,10 @@
+module Common.Model.PaymentStats
+ ( PaymentStats
+ ) where
+
+import Data.Map (Map)
+import Data.Time.Calendar (Day)
+
+import Common.Model.Category (CategoryId)
+
+type PaymentStats = [(Day, Map CategoryId Int)]