mirror of
https://github.com/microsoft/autogen.git
synced 2025-08-15 20:21:10 +00:00
6 lines
101 B
C#
6 lines
101 B
C#
![]() |
namespace Microsoft.AI.Agents.Abstractions;
|
||
|
|
||
|
public interface IHandle<T>
|
||
|
{
|
||
|
Task Handle(T item);
|
||
|
}
|