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

9 lines
No EOL
168 B
C#

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