namespace goods.Models { // 쿠팡파트너스 API public class CoupangPartners { public readonly HttpClient httpClient; public readonly string APIUrl = "https://api-gateway.coupang.com"; public readonly string APIKey = "2a0c765c-114b-4a6f-8efa-6a6fd84b1e92"; public readonly string APISecret = "2f0adf12e6ffe6cceeb5d5f59ae0d7e04de76b9d"; public CoupangPartners(HttpClient e) { httpClient = e; httpClient.BaseAddress = new Uri(APIUrl); } } }