summaryrefslogtreecommitdiff
path: root/internal/models/models.go
diff options
context:
space:
mode:
authorGrail Finder <wohilas@gmail.com>2025-04-06 10:04:22 +0300
committerGrail Finder <wohilas@gmail.com>2025-04-06 10:04:22 +0300
commit1e5faf9b609fa230d763bccdd8520441c5498a15 (patch)
tree17a92182b49f1222b377fb009a9eff70a84b6a35 /internal/models/models.go
parent95c3ebfaf9fdb1e65e3dfaef177e4b6d20344009 (diff)
Feat: add mixed exercsisesHEADmaster
Diffstat (limited to 'internal/models/models.go')
-rw-r--r--internal/models/models.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/internal/models/models.go b/internal/models/models.go
index 8e30a6c..7cef85e 100644
--- a/internal/models/models.go
+++ b/internal/models/models.go
@@ -15,4 +15,10 @@ type (
ExamID uint32 `db:"exam_id"`
MixedID uint32 `db:"mixed_id"`
}
+ MixedUbung struct {
+ ID uint32 `db:"MixedID"`
+ Name string `db:"MixedName"`
+ Status int `db:"MixedStatus"`
+ LevelID uint32 `db:"LevelID"`
+ }
)