forked from ebhomengo/niki
20 lines
657 B
Go
20 lines
657 B
Go
package adminbenefactoreparam
|
|
|
|
import (
|
|
"git.gocasts.ir/ebhomengo/niki/entity"
|
|
"time"
|
|
)
|
|
|
|
type Data struct {
|
|
ID uint `json:"id"`
|
|
FirstName string `json:"first_name"`
|
|
LastName string `json:"last_name"`
|
|
PhoneNumber string `json:"phone_number"`
|
|
Description string `json:"description"`
|
|
Email string `json:"email"`
|
|
Gender entity.Gender `json:"gender"`
|
|
BirthDate time.Time `json:"birth_date"`
|
|
Roll entity.UserRole `json:"roll"`
|
|
Status entity.BenefactorStatus `json:"status"`
|
|
}
|