layout corporate, navbar & side bar templ

This commit is contained in:
Sas Andy
2024-05-06 13:27:28 +07:00
parent 6972963f41
commit 728c4ccf7a
20 changed files with 1306 additions and 903 deletions

View File

@@ -1 +0,0 @@
package models

8
models/user.models.go Normal file
View File

@@ -0,0 +1,8 @@
package models
type User struct {
UserID int `json:"userID"`
Username string `json:"username"`
UserFullName string `json:"userFullName"`
UserPosition string `json:"userPosition"`
}