12 lines
252 B
Go
12 lines
252 B
Go
package request
|
|
|
|
import "leafdev.top/Ecosystem/recommender/internal/schema"
|
|
|
|
type ApplicationId struct {
|
|
ApplicationId schema.EntityId `json:"application_id" uri:"application_id"`
|
|
}
|
|
|
|
type ApplicationCreateRequest struct {
|
|
Name string `json:"name"`
|
|
}
|