Files
geo/server/internal/tenant/domain/user.go
T

16 lines
248 B
Go
Raw Normal View History

package domain
import "time"
type User struct {
ID int64
Email string
Phone *string
PasswordHash string
Name string
AvatarURL *string
Status string
CreatedAt time.Time
UpdatedAt time.Time
}