Bll MqService

This commit is contained in:
Mikhail Trubnikov
2023-09-21 09:37:36 +10:00
parent d50cb20c95
commit 096a990669
11 changed files with 109 additions and 38 deletions

View 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; }
}
}