aboutsummaryrefslogtreecommitdiffstats
path: root/api/dto/schedule.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/dto/schedule.go')
-rw-r--r--api/dto/schedule.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/api/dto/schedule.go b/api/dto/schedule.go
new file mode 100644
index 0000000..0d652aa
--- /dev/null
+++ b/api/dto/schedule.go
@@ -0,0 +1,10 @@
+package dto
+
+import (
+ "time"
+)
+
+type GetScheduleResponse struct {
+ Schedule interface{} `json:"schedule"`
+ LastUpdated time.Time `json:"lastUpdated"`
+}