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

21 lines
277 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
}
2022-10-31 15:59:58 +01:00
type UpdateTaskRequest struct {
ID string
Due string
}