]> Git — Sourcephile - comptalang.git/blob - lib/Hcompta/Model/Transaction/Tag.hs
Ajout : Calc.Balance types and constructors.
[comptalang.git] / lib / Hcompta / Model / Transaction / Tag.hs
1 module Hcompta.Model.Transaction.Tag where
2
3 import qualified Data.Map
4
5 type Tag = (Name, Value)
6
7 type Name = String
8
9 type Value = String
10
11 type By_Name = Data.Map.Map Name [Value]