mirror of
https://github.com/micromdm/micromdm/
synced 2026-08-06 09:16:24 +08:00
11 lines
173 B
Protocol Buffer
11 lines
173 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package commandproto;
|
|
|
|
message Event {
|
|
string id = 1;
|
|
int64 time = 2;
|
|
string device_udid = 4;
|
|
bytes payload_bytes = 5;
|
|
}
|