This commit is contained in:
2026-03-26 12:28:21 +07:00
parent 3b93fd0ec2
commit a7a9715faf
15 changed files with 176 additions and 136 deletions
+5
View File
@@ -2,6 +2,11 @@ package models
import "time"
type Schedule struct {
UpdateTime string `json:"update_time"`
Days []*Day `json:"days"`
}
// День с событиями
type Day struct {
Date time.Time `json:"date"`