microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
Libraries/Microsoft.Teams.Api/Clients/PagedMembersResult.cs
15lines · modecode
| 1 | // Copyright (c) Microsoft Corporation. All rights reserved. |
| 2 | // Licensed under the MIT License. |
| 3 | |
| 4 | using System.Text.Json.Serialization; |
| 5 | |
| 6 | namespace Microsoft.Teams.Api.Clients; |
| 7 | |
| 8 | public class PagedMembersResult |
| 9 | { |
| 10 | [JsonPropertyName("continuationToken")] |
| 11 | public string? ContinuationToken { get; set; } |
| 12 | |
| 13 | [JsonPropertyName("members")] |
| 14 | public IList<Account>? Members { get; set; } |
| 15 | } |
| 16 | |