mirror of
https://github.com/microsoft/autogen.git
synced 2025-11-29 16:39:52 +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);
|
|
} |