blob: ac3d3112d4c6d4fca9d680ea977954ff4974e286 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
module Model.EditIncome
( EditIncome(..)
) where
import Data.Time.Calendar (Day)
import Common.Model (IncomeId)
data EditIncome = EditIncome
{ _editIncome_id :: IncomeId
, _editIncome_amount :: Int
, _editIncome_date :: Day
} deriving (Show)
|