14 lines
187 B
Go
14 lines
187 B
Go
package psql
|
|
|
|
import "github.com/shopspring/decimal"
|
|
|
|
type Fraction struct {
|
|
ID int
|
|
Name string
|
|
OwnerID int
|
|
Owner *User
|
|
Money decimal.Decimal
|
|
Exp int
|
|
Level int
|
|
}
|