8 lines
245 B
C#
8 lines
245 B
C#
namespace SharepointToolbox.Web.Core.Config;
|
|
|
|
public class ClientConnectOptions
|
|
{
|
|
/// <summary>Must match the redirect URI registered in each client's app registration.</summary>
|
|
public string RedirectUri { get; set; } = string.Empty;
|
|
}
|