12 lines
291 B
Go
Executable File
12 lines
291 B
Go
Executable File
package dto
|
|
|
|
type ZSPFolderCreateRequest struct {
|
|
Name string `json:"name" binding:"required"`
|
|
Description string `json:"description"`
|
|
}
|
|
|
|
type ZSPFolderUpdateRequest struct {
|
|
Name string `json:"name" binding:"required"`
|
|
Description string `json:"description"`
|
|
}
|