microsoft/teams.net
Publicmirrored from https://github.com/microsoft/teams.netAvailable
Libraries/Microsoft.Teams.Api/MessageExtensions/ActionResponse.cs
16lines · modecode
| 1 | using System.Text.Json.Serialization; |
| 2 | |
| 3 | namespace Microsoft.Teams.Api.MessageExtensions; |
| 4 | |
| 5 | /// <summary> |
| 6 | /// Response of messaging extension action |
| 7 | /// </summary> |
| 8 | public class ActionResponse : TaskModules.Response |
| 9 | { |
| 10 | /// <summary> |
| 11 | /// the message extension result |
| 12 | /// </summary> |
| 13 | [JsonPropertyName("composeExtension")] |
| 14 | [JsonPropertyOrder(2)] |
| 15 | public Result? ComposeExtension { get; set; } |
| 16 | } |