7 lines
125 B
Go
7 lines
125 B
Go
package dto
|
|
|
|
type BatchIDRequest struct {
|
|
UserID *int64 `json:"user_id"`
|
|
IDs []int64 `json:"ids" binding:"required"`
|
|
}
|