16 lines
386 B
C#
16 lines
386 B
C#
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<string, string> DefaultHeaders { get; }
|
|
HttpClient CreateHttpClientWithDefaultHeaders(string token);
|
|
}
|
|
}
|