mirror of
https://github.com/APIParkLab/APIPark.git
synced 2026-06-14 20:41:15 +08:00
13 lines
252 B
Go
13 lines
252 B
Go
package model_dto
|
|
|
|
type Model struct {
|
|
Name string `json:"name"`
|
|
AccessConfiguration string `json:"access_configuration"`
|
|
ModelParameters string `json:"model_parameters"`
|
|
}
|
|
|
|
type EditModel struct {
|
|
Id string `json:"id"`
|
|
Model
|
|
}
|