aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/packers/ut/test.proto
blob: c872616bcc8cacbc05732b92e06dbad852b93fc5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package NProtoPackerTest;

message TTestMessage {
    required string RequiredString = 1;
    optional string OptionalString = 2;

    required int32 RequiredInt32 = 3;
    optional int32 OptionalInt32 = 4;

    repeated string RepeatedStrings = 5;
}