wms-be/pkg/dto/response.go

24 lines
353 B
Go

package dto
type (
UserResponse struct {
ID string `json:"id"`
Name string `json:"name"`
}
RoleResponse struct {
ID string `json:"id"`
Name string `json:"name"`
}
ClientResponse struct {
ID string `json:"id"`
Name string `json:"name"`
}
PermissionResponse struct {
ID string `json:"id"`
Name string `json:"name"`
}
)