banking-bot/BankingBot/ActionManagers/ActionDetail.cs
2017-02-10 20:48:11 +00:00

12 lines
211 B
C#

using BankingBot.Enums;
using System;
namespace BankingBot.ActionManagers
{
public class ActionDetail
{
public Type Type { get; set; }
public Provider Provider { get; set; }
}
}