module View.Payment.Init ( Init(..) ) where import Common.Model (Category, Income, Payment, PaymentCategory, User) data Init = Init { _init_users :: [User] , _init_payments :: [Payment] , _init_incomes :: [Income] , _init_categories :: [Category] , _init_paymentCategories :: [PaymentCategory] } deriving (Show)