-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathGraphOptions.cs
More file actions
30 lines (25 loc) · 812 Bytes
/
GraphOptions.cs
File metadata and controls
30 lines (25 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
namespace GitHubIssueManager.Options;
/// <summary>
/// Microsoft Graph options loaded from local.settings.json.
/// </summary>
public class GraphOptions
{
/// <summary>
/// Gets or sets the client ID from Entra app registration.
/// </summary>
public string? ClientId { get; set; }
/// <summary>
/// Gets or sets the client secret from Entra app registration.
/// </summary>
public string? ClientSecret { get; set; }
/// <summary>
/// Gets or sets the Microsoft Graph connector ID.
/// </summary>
public string? ConnectorId { get; set; }
/// <summary>
/// Gets or sets the tenant ID from Entra app registration.
/// </summary>
public string? TenantId { get; set; }
}