Files
schedtxt_models/tx0/user/login_history.go
T
phoenix 21e91ebc7f
Go CI / Test and Lint (push) Successful in 6s
Go Release / build-and-release (pull_request) Successful in 7s
Go CI / Test and Lint (pull_request) Successful in 5s
go fmt
2026-05-26 22:04:34 -04:00

19 lines
378 B
Go

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"`
}