1
0
mirror of https://github.com/aclindsa/moneygo.git synced 2024-09-21 04:10:05 -04:00
moneygo/accounts.go
2015-06-25 22:36:58 -04:00

22 lines
366 B
Go

package main
type AccountType int64
const (
Bank AccountType = 1
Cash = 2
Asset = 3
Liability = 4
Investment = 5
Income = 6
Expense = 7
)
type Account struct {
AccountId int64
UserId int64
SecurityId int64
Type AccountType
Name string
}