banking-bot/BankingBot/Contracts/IProviderLoginManager.cs
2017-01-25 20:29:53 +00:00

9 lines
No EOL
176 B
C#

using BankingBot.Responses;
namespace BankingBot.Contracts
{
public interface IProviderLoginManager
{
Response Login(ILoginCredentials credentials);
}
}