11 lines
229 B
Go
11 lines
229 B
Go
|
package api
|
||
|
|
||
|
import "gorm.io/gorm"
|
||
|
|
||
|
type User struct {
|
||
|
gorm.Model
|
||
|
Name string `json:"name,omitempty"`
|
||
|
Phone string `json:"phone,omitempty"`
|
||
|
Email string `json:"mobile,omitempty"`
|
||
|
Password string `json:"password,omitempty"`
|
||
|
}
|