9 lines
148 B
Protocol Buffer
9 lines
148 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
import "EntryData.proto";
|
|
|
|
message DocumentStructure {
|
|
// The root EntryData represents the Document.
|
|
EntryData root = 1;
|
|
}
|