mirror of
https://github.com/micromdm/micromdm/
synced 2026-06-12 13:35:35 +08:00
13 lines
265 B
Protocol Buffer
13 lines
265 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package commandproto;
|
|
|
|
option go_package = "github.com/micromdm/micromdm/platform/command/internal/commandproto";
|
|
|
|
message Event {
|
|
string id = 1;
|
|
int64 time = 2;
|
|
string device_udid = 4;
|
|
bytes payload_bytes = 5;
|
|
}
|