13 lines
278 B
Protocol Buffer
13 lines
278 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_outer_classname = "DocumentStructureProto";
|
|
option java_package = "com.iqser.red.service.redaction.v1.server.data";
|
|
|
|
|
|
import "EntryData.proto";
|
|
|
|
message DocumentStructure {
|
|
// The root EntryData represents the Document.
|
|
EntryData root = 1;
|
|
}
|