1
0
mirror of https://github.com/aclindsa/moneygo.git synced 2025-12-16 16:14:36 -05:00

Initial commit

This commit is contained in:
2015-06-25 22:36:58 -04:00
commit 0f393d2fbb
10 changed files with 557 additions and 0 deletions

21
accounts.go Normal file
View File

@@ -0,0 +1,21 @@
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
}