10 lines
184 B
Go
10 lines
184 B
Go
|
package schema
|
||
|
|
||
|
type ApplicationId struct {
|
||
|
ApplicationId EntityId `json:"application_id" uri:"application_id"`
|
||
|
}
|
||
|
|
||
|
type ApplicationCreateRequest struct {
|
||
|
Name string `json:"name"`
|
||
|
}
|