12 lines
211 B
C#
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; }
|
|
}
|
|
}
|