|
package benefactoreparam
|
|
|
|
import "git.gocasts.ir/ebhomengo/niki/entity"
|
|
|
|
type Data struct {
|
|
ID uint `json:"id" example:"1"`
|
|
FirstName string `json:"first_name" example:"mehdi"`
|
|
LastName string `json:"last_name" example:"rez"`
|
|
Role entity.UserRole `json:"role" example:"benefactor"`
|
|
}
|