/**
 * Copyright(c) Microsoft Corporation.All rights reserved.
 * Licensed under the MIT License.
 */

import { ChannelAccount } from '@microsoft/agents-activity'

/**
 * Represents the members of a conversation.
 */
export interface ConversationMembers {
  /**
   * The ID of the conversation.
   */
  id: string;
  /**
   * The list of members in the conversation.
   */
  members: ChannelAccount[];
}
