20 lines
270 B
Go
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
|
|
}
|