microsoft/teams.net
Publicmirrored from https://github.com/microsoft/teams.netAvailable
Libraries/Microsoft.Teams.Api/MessageExtensions/Response.cs
23lines · modecode
| 1 | using System.Text.Json.Serialization; |
| 2 | |
| 3 | namespace Microsoft.Teams.Api.MessageExtensions; |
| 4 | |
| 5 | /// <summary> |
| 6 | /// Messaging extension response |
| 7 | /// </summary> |
| 8 | public class Response |
| 9 | { |
| 10 | /// <summary> |
| 11 | /// the message extension result |
| 12 | /// </summary> |
| 13 | [JsonPropertyName("composeExtension")] |
| 14 | [JsonPropertyOrder(0)] |
| 15 | public Result? ComposeExtension { get; set; } |
| 16 | |
| 17 | /// <summary> |
| 18 | /// The cache info for this response |
| 19 | /// </summary> |
| 20 | [JsonPropertyName("cacheInfo")] |
| 21 | [JsonPropertyOrder(1)] |
| 22 | public CacheInfo? CacheInfo { get; set; } |
| 23 | } |