mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-04 23:50:39 +00:00

Co-authored-by: Jacob Alber <jaalber@microsoft.com> Co-authored-by: Ryan Sweet <rysweet@microsoft.com>
12 lines
180 B
Protocol Buffer
12 lines
180 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option csharp_namespace = "GettingStartedGrpcSample.Events";
|
|
|
|
message CountMessage {
|
|
int32 content = 1;
|
|
}
|
|
|
|
message CountUpdate {
|
|
int32 new_count = 1;
|
|
}
|