aboutsummaryrefslogtreecommitdiff
path: root/common/src/Common/Model/PaymentStats.hs
blob: 2dea6408ebfce35d67754743507a88db809b8249 (plain)
1
2
3
4
5
6
7
8
9
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)]