forked from ebhomengo/niki
9 lines
194 B
Go
9 lines
194 B
Go
|
package benefactoreparam
|
||
|
|
||
|
type BenefactroInfo struct {
|
||
|
ID uint `json:"id"`
|
||
|
FirstName string `json:"first_name"`
|
||
|
LastName string `json:"last_name"`
|
||
|
Role string `json:"role"`
|
||
|
}
|