Let's say I have .proto like this:
message Dummy
{
required Attributes DummyAttributes = 1;
required string DummyString = 2;
repeated Attribute DummyAttributes2 = 3;
}
message Attributes
{
repeated Attribute List = 1;
}
message Attribute
{
required string Name = 1;
required string Value = 2;
}
What is better inside Dummy message? DummyAttributes or DummyAttributes2 ?
--
You received this message because you are subscribed to the Google Groups
"Protocol Buffers" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/protobuf/-/OTZR2bpElagJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/protobuf?hl=en.