Login History #2

Merged
phoenix merged 3 commits from login_history into main 2026-05-26 22:08:05 -04:00
Showing only changes of commit 21e91ebc7f - Show all commits
+5 -5
View File
@@ -1,18 +1,18 @@
package user
import (
"time"
"github.com/google/uuid"
"time"
)
type UserLoginHistory struct {
Id uuid.UUID `json:"id"`
Id uuid.UUID `json:"id"`
LoginTime time.Time `json:"login_time"`
UserId uuid.UUID `json:"user_id"`
UserId uuid.UUID `json:"user_id"`
}
type ServiceUserLoginHistory struct {
Id uuid.UUID `json:"id"`
LoginTime time.Time `json:"login_time"`
Id uuid.UUID `json:"id"`
LoginTime time.Time `json:"login_time"`
ServiceUserId uuid.UUID `json:"service_user_id"`
}