/
n1kolas
/
VendingUserClient
Обзор
Документация
Войти
/
n1kolas
/
VendingUserClient
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Services/APIHttpClient.cs
16 строк
355 B
Kharchenko Nickolai
Made lots of changes, quality ones
15 июн 2025, 04:18
15 июн 2025, 04:18
dc34878
Код
Авторство
О чём код?
using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Text; using System.Threading.Tasks; namespace AdminClient.Services { public class APIHttpClient { private static readonly HttpClient _httpClient = new HttpClient(); public static HttpClient Instance => _httpClient; } }