snelstart-import-1.0.0: src/SnelstartImport/Currency.hs
{-# LANGUAGE DeriveAnyClass #-}
module SnelstartImport.Currency
( Currency(..)
)
where
import Data.Csv
newtype Currency = Currency Double
deriving newtype (Ord, Show, Eq, FromField, Num, Fractional)