Files
Datarush/internal/auth/domain/user.go
T
2025-12-15 22:28:01 +03:00

20 lines
270 B
Go

package domain
import "time"
type User struct {
ID ID
Email string
Username string
Password string
CreatedAt time.Time
UpdatedAt time.Time
}
type UserWithoutPassword struct {
ID ID
Email string
Username string
CreatedAt time.Time
}