answer/internal/schema/role_schema.go

9 lines
185 B
Go

package schema
// GetRoleResp get role response
type GetRoleResp struct {
ID int `json:"id"`
Name string `json:"name"`
Description string `json:"description"`
}