gte/cmd/android-app/screen/request.go

16 lines
218 B
Go
Raw Normal View History

2022-10-31 09:18:36 +01:00
package screen
type SaveConfigRequest struct {
Fields map[string]string
}
type SaveNewTaskRequest struct {
Fields map[string]string
}
type SyncTasksRequest struct{}
type MarkTaskDoneRequest struct {
ID string
}