// ------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. // ------------------------------------------------------------------------------ namespace Microsoft.Graph { /// /// Class representing the logged in MS graph user /// public class GraphUserAccount { /// /// The users email address /// public string Email { get; set; } /// /// The identity provider url /// public string Environment { get; set; } /// /// Users tenant id /// public string TenantId { get; set; } /// /// Users id in a tenant /// public string ObjectId { get; set; } } }