using System;
using Microsoft.Identity.Client;
///
/// Used to propogate a created instance of via an event handler and allow for modifications before the application uses it.
///
public class MsalPublicClientApplicationBuilderCreatedEventArgs : EventArgs
{
///
/// Creates a new instance of .
///
public MsalPublicClientApplicationBuilderCreatedEventArgs(PublicClientApplicationBuilder builder)
{
Builder = builder;
}
///
/// The created instance of that will be used by the application.
///
///
/// Can be read and reassigned. The assigned value will be used by the application when all synchronous event handlers have finished being raised.
///
public PublicClientApplicationBuilder Builder { get; set; }
}