mirror of
https://github.com/status-im/status-go.git
synced 2025-01-11 15:14:52 +00:00
10 lines
161 B
Go
10 lines
161 B
Go
|
package requests
|
||
|
|
||
|
type SetSyncingOnMobileNetwork struct {
|
||
|
Enabled bool `json:"enabled"`
|
||
|
}
|
||
|
|
||
|
func (r *SetSyncingOnMobileNetwork) Validate() error {
|
||
|
return nil
|
||
|
}
|