This commit is contained in:
2025-05-17 04:36:06 +07:00
parent 8643af86ee
commit 4bd18ee756
13 changed files with 188 additions and 7 deletions
+7
View File
@@ -0,0 +1,7 @@
package models
type Action struct {
ID string
To string
Time int64
}
+7
View File
@@ -0,0 +1,7 @@
package models
type Application struct {
TeamID int64
Name string
State string
}
+7
View File
@@ -0,0 +1,7 @@
package models
type Game struct {
StartTime int64
EndTime int64
State string
}
+7
View File
@@ -0,0 +1,7 @@
package models
type Team struct {
ID int64
Name string
Password string
}