Files
santa/Source/santad/ProcessTree/process_tree.proto

14 lines
183 B
Protocol Buffer

syntax = "proto3";
package santa.pb.v1.process_tree;
message Annotations {
enum Originator {
UNSPECIFIED = 0;
LOGIN = 1;
CRON = 2;
}
Originator originator = 1;
}