namespace PARR.BLL.Domain.Mq { /// /// Ответ от API RabbitMQ /// public class MqApiResult { public bool IsSuccess { get; set; } public object? Response { get; set; } public Exception? Exception { get; set; } } }