banking-bot/BankingBot/LoginCredentials/LoginCredentials.cs
2017-01-25 16:57:20 +00:00

19 lines
447 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using BankingBot.Attributes;
using BankingBot.Contracts;
using BankingBot.Enums;
namespace BankingBot.LoginCredentials
{
public abstract class LoginCredentials : ILoginCredentials
{
public Provider? GetProvider()
{
return ProviderIdentifier.GetProviderFromType(GetType());
}
}
}