mirror of
https://github.com/microsoft/autogen.git
synced 2025-12-26 06:28:50 +00:00
closes #3809 - refactor .NET code foldersand namespaces for better clarity and maintainability
9 lines
142 B
Protocol Buffer
9 lines
142 B
Protocol Buffer
syntax = "proto3";
|
|
package agents;
|
|
|
|
option csharp_namespace = "Microsoft.AutoGen.Abstractions";
|
|
|
|
message AgentState {
|
|
string message = 1;
|
|
}
|