banking-bot/BankingBot/Responses/Response.cs
2017-01-25 20:29:53 +00:00

17 lines
358 B
C#

using BankingBot.Contracts;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using BankingBot.Enums;
namespace BankingBot.Responses
{
public class Response : IResponse
{
public Exception Exception { get; set; }
public ResponseStatus Status { get; set; }
}
}