using Microsoft.InformationProtection; namespace Aip.Api.Service.Aip; public class ConsentDelegateImplementation : IConsentDelegate { public Consent GetUserConsent(string url) { //return Consent.AcceptAlways; return Consent.Accept; } }