Files
woogo/entity/system_status_tool.go

13 lines
353 B
Go
Raw Normal View History

2025-04-08 19:24:11 +02:00
package entity
// SystemStatusTool system status tool properties
type SystemStatusTool struct {
ID string `json:"id"`
Name string `json:"name"`
Action string `json:"action"`
Description string `json:"description"`
Success bool `json:"success"`
Message string `json:"message"`
Confirm bool `json:"confirm"`
}