Add Bulk struct for bulk actions

This commit is contained in:
raul 2024-06-13 09:22:49 +02:00
parent 0d839daf4e
commit 7c08d039f8
1 changed files with 4 additions and 0 deletions

View File

@ -38,3 +38,7 @@ type Response struct {
Successful bool Successful bool
Message string Message string
} }
type Bulk struct {
ClientIDs []int `form:"clients[]"`
}