mirror of
https://github.com/h44z/wg-portal.git
synced 2026-01-08 21:16:18 +00:00
11 lines
242 B
Go
11 lines
242 B
Go
package model
|
|
|
|
type BulkPeerRequest struct {
|
|
Identifiers []string `json:"Identifiers" binding:"required"`
|
|
Reason string `json:"Reason"`
|
|
}
|
|
|
|
type BulkUserRequest struct {
|
|
Identifiers []string `json:"Identifiers" binding:"required"`
|
|
}
|