mirror of
https://github.com/bitwarden/android.git
synced 2026-07-19 10:23:44 -05:00
11 lines
249 B
C#
11 lines
249 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Bit.App.Models.Api;
|
|
|
|
namespace Bit.App.Abstractions
|
|
{
|
|
public interface ILoginApiRepository : IApiRepository<LoginRequest, LoginResponse, string>
|
|
{
|
|
}
|
|
} |