Jack Gerrits 08f9830bf7
Dotnet Grpc worker implementation (#5245)
Co-authored-by: Jacob Alber <jaalber@microsoft.com>
Co-authored-by: Ryan Sweet <rysweet@microsoft.com>
2025-02-05 08:34:02 -08:00

12 lines
180 B
Protocol Buffer

syntax = "proto3";
option csharp_namespace = "GettingStartedGrpcSample.Events";
message CountMessage {
int32 content = 1;
}
message CountUpdate {
int32 new_count = 1;
}