1
0
mirror of https://github.com/aclindsa/moneygo.git synced 2025-07-01 12:08:37 -04: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

19
securities.go Normal file
View File

@ -0,0 +1,19 @@
package main
type SecurityType int64
const (
Banknote SecurityType = 1
Bond = 2
Stock = 3
MutualFund = 4
)
type Security struct {
SecurityId int64
Name string
// Number of decimal digits (to the right of the decimal point) this
// security is precise to
Precision int64
Type SecurityType
}