Cleanup the dto models

This commit is contained in:
2025-07-25 22:17:42 +03:30
parent e7b8338932
commit 85fe309b05
4 changed files with 13 additions and 15 deletions

View File

@@ -0,0 +1,13 @@
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"`
}

View File

@@ -1,5 +0,0 @@
package dto
type ApproveMediaInput struct {
MediaId string `json:"mediaId" binding:"required"`
}

View File

@@ -1,5 +0,0 @@
package dto
type LoginInput struct {
Password string `json:"password" binding:"required"`
}

View File

@@ -1,5 +0,0 @@
package dto
type RejectMediaInput struct {
MediaId string `json:"mediaId" binding:"required"`
}