14 lines
267 B
Go
14 lines
267 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"`
|
|
}
|