aboutsummaryrefslogtreecommitdiff
path: root/dhall/types/Salary.dhall
blob: b2b09269a06bcbb8717ee77939f938d4f5e4972a (plain)
1
2
3
4
5
6
7
8
9
10
11
let Stock = ./Stock.dhall

in  { Type =
        { amount : Natural
        , currency : Text
        , per : Text
        , stock : Optional Stock.Type
        }
    , default =
      { amount = 0, currency = "USD", per = "year", stock = None Stock.Type }
    }