15 lines
293 B
C#
15 lines
293 B
C#
namespace PARR.BLL.Domain.Mq
|
|
{
|
|
/// <summary>
|
|
/// Ответ от API RabbitMQ
|
|
/// </summary>
|
|
public class MqApiResult
|
|
{
|
|
public bool IsSuccess { get; set; }
|
|
|
|
public object? Response { get; set; }
|
|
|
|
public Exception? Exception { get; set; }
|
|
}
|
|
}
|