microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
Libraries/Microsoft.Teams.Api/Meetings/Participant.cs
26lines · 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.Meetings; |
| 7 | |
| 8 | /// <summary> |
| 9 | /// Teams meeting participant detailing user Azure Active Directory details. |
| 10 | /// </summary> |
| 11 | public class Participant |
| 12 | { |
| 13 | /// <summary> |
| 14 | /// Meeting role of the user. |
| 15 | /// </summary> |
| 16 | [JsonPropertyName("role")] |
| 17 | [JsonPropertyOrder(0)] |
| 18 | public Role? User { get; set; } |
| 19 | |
| 20 | /// <summary> |
| 21 | /// Indicates if the participant is in the meeting. |
| 22 | /// </summary> |
| 23 | [JsonPropertyName("inMeeting")] |
| 24 | [JsonPropertyOrder(1)] |
| 25 | public bool? InMeeting { get; set; } |
| 26 | } |