using System.Net.Http; namespace AMWD.Net.Api.Cloudflare.Auth { /// /// Defines the interface to add authentication information. /// public interface IAuthentication { /// /// Adds authentication headers to the given . /// /// The to add the headers to. void AddHeader(HttpClient httpClient); } }