mirror of
https://github.com/microsoft/autogen.git
synced 2025-10-20 20:39:37 +00:00
17 lines
479 B
C#
17 lines
479 B
C#
![]() |
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|||
|
// PythonInterfaces.cs
|
|||
|
|
|||
|
namespace Microsoft.AutoGen.Contracts.Python;
|
|||
|
|
|||
|
public class MessageContext(string messageId, CancellationToken cancellationToken)
|
|||
|
{
|
|||
|
public string MessageId { get; set; } = messageId;
|
|||
|
public CancellationToken CancellationToken { get; set; } = cancellationToken;
|
|||
|
|
|||
|
public AgentId? Sender { get; set; }
|
|||
|
public TopicId? Topic { get; set; }
|
|||
|
|
|||
|
public bool IsRpc { get; set; }
|
|||
|
}
|
|||
|
|