mirror of
https://github.com/LeRoid-hub/Bookholder-API.git
synced 2025-01-31 10:44:56 +00:00
21 lines
272 B
Go
21 lines
272 B
Go
|
package database
|
||
|
|
||
|
type Account struct {
|
||
|
Number int
|
||
|
Name string
|
||
|
Kind string
|
||
|
}
|
||
|
|
||
|
type Transaction struct {
|
||
|
Amount float32
|
||
|
Debit bool
|
||
|
OffsetAccount int
|
||
|
Account int
|
||
|
Description string
|
||
|
}
|
||
|
|
||
|
type User struct {
|
||
|
Name string
|
||
|
Password string
|
||
|
}
|