mirror of
https://github.com/APIParkLab/APIPark.git
synced 2026-06-14 20:41:15 +08:00
19 lines
352 B
Go
19 lines
352 B
Go
package dto
|
|
|
|
type ApplyOnReleaseInput struct {
|
|
Version string `json:"version"`
|
|
VersionRemark string `json:"version_remark"`
|
|
PublishRemark string `json:"remark"`
|
|
}
|
|
|
|
type ApplyInput struct {
|
|
Release string `json:"release"`
|
|
Remark string `json:"remark"`
|
|
}
|
|
|
|
type Comments struct {
|
|
Comments string `json:"comments"`
|
|
}
|
|
type DoPublish struct {
|
|
}
|