Reviewed-on: phoenix/textsender-models#4 Co-authored-by: phoenix <kundeng00@pm.me> Co-committed-by: phoenix <kundeng00@pm.me>
13 lines
235 B
Go
13 lines
235 B
Go
package user
|
|
|
|
import (
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
type User struct {
|
|
Id uuid.UUID `json:"id"`
|
|
PhoneNumber string `json:"phone_number"`
|
|
Username string `json:"username"`
|
|
Password string `json:"password"`
|
|
}
|