mirror of
https://github.com/4sval/FModel.git
synced 2026-03-22 17:54:27 -05:00
14 lines
277 B
C#
14 lines
277 B
C#
using RestSharp;
|
|
|
|
namespace FModel.ViewModels.ApiEndpoints
|
|
{
|
|
public abstract class AbstractApiProvider
|
|
{
|
|
protected readonly IRestClient _client;
|
|
|
|
public AbstractApiProvider(IRestClient client)
|
|
{
|
|
_client = client;
|
|
}
|
|
}
|
|
} |