Bll MqService
This commit is contained in:
18
PARR.BLL/Domain/Mq/MqSendResult.cs
Normal file
18
PARR.BLL/Domain/Mq/MqSendResult.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
namespace PARR.BLL.Domain.Mq
|
||||
{
|
||||
/// <summary>
|
||||
/// Результат отправки очереди в MQ
|
||||
/// </summary>
|
||||
public class MqSendResult
|
||||
{
|
||||
/// <summary>
|
||||
/// Результат отправки
|
||||
/// </summary>
|
||||
public bool IsSuccess { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Неотправленные сообщения
|
||||
/// </summary>
|
||||
public string[]? NotSendMessages { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user