banking-bot/BankingBot/Contracts/ILoginManager.cs
Aaron Yarborough f5e9908e83 Refactoring
2017-02-13 13:13:27 +00:00

7 lines
No EOL
135 B
C#

namespace BankingBot.Contracts
{
public interface ILoginManager
{
void Login(ILoginCredentials credentials);
}
}