diff options
author | Grail Finder <wohilas@gmail.com> | 2025-04-06 10:04:22 +0300 |
---|---|---|
committer | Grail Finder <wohilas@gmail.com> | 2025-04-06 10:04:22 +0300 |
commit | 1e5faf9b609fa230d763bccdd8520441c5498a15 (patch) | |
tree | 17a92182b49f1222b377fb009a9eff70a84b6a35 /internal/models/models.go | |
parent | 95c3ebfaf9fdb1e65e3dfaef177e4b6d20344009 (diff) |
Diffstat (limited to 'internal/models/models.go')
-rw-r--r-- | internal/models/models.go | 6 |
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"` + } ) |