// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
using System.Text.Json.Serialization;
namespace Microsoft.Teams.Api.MessageExtensions;
///
/// Response of messaging extension action
///
public class ActionResponse : TaskModules.Response
{
///
/// the message extension result
///
[JsonPropertyName("composeExtension")]
[JsonPropertyOrder(2)]
public Result? ComposeExtension { get; set; }
}