2023-07-24 20:56:10 +00:00
|
|
|
package bootoption
|
|
|
|
|
2023-07-29 19:23:36 +00:00
|
|
|
import "github.com/google/uuid"
|
|
|
|
|
2023-07-24 20:56:10 +00:00
|
|
|
type EFIApp struct {
|
2023-08-15 19:59:47 +00:00
|
|
|
Name string `json:"name"`
|
|
|
|
Path string `json:"path"`
|
|
|
|
DiskID string `json:"disk_id"`
|
2023-07-24 20:56:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Client struct {
|
2023-07-29 19:23:36 +00:00
|
|
|
ID uuid.UUID
|
2023-07-30 09:20:45 +00:00
|
|
|
Name string `json:"name"`
|
|
|
|
Options map[string]EFIApp `json:"options"`
|
|
|
|
SelectedOption string `json:"selected_option"`
|
2023-07-24 20:56:10 +00:00
|
|
|
}
|