/// <summary>
        /// Initializes a new instance of the <see cref="ClientAppConfigurationInfo" /> class.
        /// </summary>


        /// <param name="Current">The current, active configuration for the integration..</param>



        /// <param name="Effective">The effective configuration for the app, containing the integration specific configuration along with overrides specified in the integration type..</param>


        public ClientAppConfigurationInfo(IntegrationConfiguration Current = null, EffectiveConfiguration Effective = null)
        {
            this.Current = Current;



            this.Effective = Effective;
        }
Exemple #2
0
        /// <summary>
        /// Initializes a new instance of the <see cref="IntegrationConfigurationInfo" /> class.
        /// </summary>


        /// <param name="Current">The current, active configuration for the integration..</param>


        public IntegrationConfigurationInfo(IntegrationConfiguration Current = null)
        {
            this.Current = Current;
        }