mirror of
https://github.com/microsoft/autogen.git
synced 2025-08-14 19:51:10 +00:00

* move optional base agents to separate package * rename main sdk to Core * reduce dependency graph Co-authored-by: @rysweet Authored-by: @kostapetan Co-authored-by: @kopetan-ms
13 lines
242 B
C#
13 lines
242 B
C#
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// IHandle.cs
|
|
namespace Microsoft.AutoGen.Core;
|
|
public interface IHandle
|
|
{
|
|
Task HandleObject(object item);
|
|
}
|
|
|
|
public interface IHandle<T> : IHandle
|
|
{
|
|
Task Handle(T item);
|
|
}
|