9 lines
210 B
Go
9 lines
210 B
Go
package dto
|
|
|
|
type ApiGroupDto struct {
|
|
Id int `json:"id"`
|
|
Name string `json:"name"`
|
|
ApiUserId int `json:"apiUserId"`
|
|
ChildApiUserId int `json:"childApiUserId"`
|
|
}
|