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