using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CPRNIMS.Domain.UIContracts.Common { public interface IApiConfigurationService { string BaseUrl { get; } Dictionary DefaultHeaders { get; } HttpClient CreateHttpClientWithDefaultHeaders(string token); } }