mirror of
https://github.com/lejianwen/rustdesk-api.git
synced 2025-12-03 02:23:16 +00:00
15 lines
278 B
Go
15 lines
278 B
Go
package admin
|
|
|
|
type AuditQuery struct {
|
|
PeerId string `form:"peer_id"`
|
|
FromPeer string `form:"from_peer"`
|
|
PageQuery
|
|
}
|
|
|
|
type AuditConnLogIds struct {
|
|
Ids []uint `json:"ids" validate:"required"`
|
|
}
|
|
type AuditFileLogIds struct {
|
|
Ids []uint `json:"ids" validate:"required"`
|
|
}
|