17 lines
345 B
Go
17 lines
345 B
Go
package dto
|
|
|
|
type ApproveMediaInput struct {
|
|
MediaId string `json:"mediaId" binding:"required"`
|
|
}
|
|
|
|
type LoginInput struct {
|
|
Password string `json:"password" binding:"required"`
|
|
}
|
|
|
|
type RejectMediaInput struct {
|
|
MediaId string `json:"mediaId" binding:"required"`
|
|
}
|
|
|
|
type GiteaLoginInput struct {
|
|
Code string `json:"code" binding:"required"`
|
|
} |