microsoft/teams.net

Public

mirrored fromhttps://github.com/microsoft/teams.netAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
docs/update-release-process

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

Libraries/Microsoft.Teams.Api/Meetings/Participant.cs

26lines · modecode

1// Copyright (c) Microsoft Corporation. All rights reserved.
2// Licensed under the MIT License.
3
4using System.Text.Json.Serialization;
5
6namespace Microsoft.Teams.Api.Meetings;
7
8/// <summary>
9/// Teams meeting participant detailing user Azure Active Directory details.
10/// </summary>
11public 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}