Compare commits

..
Author SHA1 Message Date
phoenix 91cef48ddf Version bump 2026-05-03 16:00:03 -04:00
phoenix 726a8e3da4 Forgot go version update in workflow 2026-05-03 15:59:24 -04:00
phoenix d0ec54eb9f Updating go in workflow 2026-05-03 15:56:43 -04:00
phoenix b615219c5b Updating go version 2026-05-03 15:51:32 -04:00
-18
View File
@@ -1,18 +0,0 @@
package user
import (
"github.com/google/uuid"
"time"
)
type UserLoginHistory struct {
Id uuid.UUID `json:"id"`
LoginTime time.Time `json:"login_time"`
UserId uuid.UUID `json:"user_id"`
}
type ServiceUserLoginHistory struct {
Id uuid.UUID `json:"id"`
LoginTime time.Time `json:"login_time"`
ServiceUserId uuid.UUID `json:"service_user_id"`
}