banking-bot/BankingBot/Contracts/IResponse.cs
Aaron Yarborough 1e9b41a030 Refactor
2017-07-18 16:02:18 +01:00

12 lines
197 B
C#

using BankingBot.Enums;
using System;
namespace BankingBot.Contracts
{
public interface IResponse
{
Exception Exception { get; }
ResponseStatus Status { get; }
}
}