15 lines
194 B
Go
15 lines
194 B
Go
package domain
|
|
|
|
import (
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
type User struct {
|
|
ID uuid.UUID
|
|
Username string
|
|
Email string
|
|
Password string
|
|
// CreatedAt time.Time
|
|
// UpdatedAt time.Time
|
|
}
|