mirror of
https://github.com/microsoft/autogen.git
synced 2025-11-30 00:49:53 +00:00
10 lines
263 B
C#
10 lines
263 B
C#
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|||
|
|
// IUnboundSubscriptionDefinition.cs
|
|||
|
|
|
|||
|
|
|
|||
|
|
namespace Microsoft.AutoGen.Contracts.Python;
|
|||
|
|
|
|||
|
|
public interface IUnboundSubscriptionDefinition
|
|||
|
|
{
|
|||
|
|
public ISubscriptionDefinition Bind(AgentType agentType);
|
|||
|
|
}
|