mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-05 08:01:20 +00:00
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;
|
||
|
}
|