natsio/model/authsms_request.go

11 lines
248 B
Go
Raw Normal View History

2022-10-20 07:32:32 +00:00
package model
type CreateUserSMSRequest struct {
Name string `json:"name"`
Phone string `json:"phone"`
Email string `json:"email"`
Supplier string `json:"supplier"`
2022-10-20 08:17:50 +00:00
Role string `json:"role"`
2022-10-20 08:10:42 +00:00
Password string `json:"password"`
2022-10-20 07:32:32 +00:00
}