init
This commit is contained in:
14
internal/core/domain/user.go
Normal file
14
internal/core/domain/user.go
Normal file
@@ -0,0 +1,14 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user