mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
api service interface
This commit is contained in:
9
src/Core/Abstractions/IApiService.cs
Normal file
9
src/Core/Abstractions/IApiService.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Bit.Core.Abstractions
|
||||
{
|
||||
public interface IApiService
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@@ -16,7 +16,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Bit.Core.Services
|
||||
{
|
||||
public class ApiService
|
||||
public class ApiService : IApiService
|
||||
{
|
||||
private readonly JsonSerializerSettings _jsonSettings = new JsonSerializerSettings
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user