mirror of
https://github.com/4sval/FModel.git
synced 2026-04-13 21:16:46 -05:00
14 lines
245 B
C#
14 lines
245 B
C#
using RestSharp;
|
|
|
|
namespace FModel.ViewModels.ApiEndpoints;
|
|
|
|
public abstract class AbstractApiProvider
|
|
{
|
|
protected readonly RestClient _client;
|
|
|
|
protected AbstractApiProvider(RestClient client)
|
|
{
|
|
_client = client;
|
|
}
|
|
}
|