initial commit from original sev version

This commit is contained in:
Bartal Læarsson
2026-06-25 12:03:26 +01:00
commit 9c157cc5a0
31 changed files with 468875 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
package models
type ValidateUser struct {
ID int64 `json:"id"`
UserName string `json:"user_name" binding:"required"`
Password string `json:"password" binding:"required"`
Role string `json:"role"`
}
type User struct {
ID int64 `json:"id"`
UserName string `json:"user_name"`
Password string `json:"-"`
Role string `json:"role"`
}