8 lines
140 B
Go
8 lines
140 B
Go
|
package models
|
||
|
|
||
|
type StatementRequest struct {
|
||
|
Account string `json:"account"`
|
||
|
From int `json:"from"`
|
||
|
To int `json:"to"`
|
||
|
}
|