12 lines
180 B
C#
12 lines
180 B
C#
namespace Front.Program.Services;
|
|
|
|
public class APIService
|
|
{
|
|
private readonly HttpClient _http;
|
|
|
|
public APIService(HttpClient http)
|
|
{
|
|
_http = http;
|
|
}
|
|
|
|
} |