12 lines
197 B
C#
12 lines
197 B
C#
using BankingBot.Enums;
|
|
using System;
|
|
|
|
namespace BankingBot.Contracts
|
|
{
|
|
public interface IResponse
|
|
{
|
|
Exception Exception { get; }
|
|
|
|
ResponseStatus Status { get; }
|
|
}
|
|
}
|