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
|
||
|
}
|