generator templates, отправка в MQ
This commit is contained in:
25
PARR.BLL/Domain/Mq/GeneratorTemplateMq.cs
Normal file
25
PARR.BLL/Domain/Mq/GeneratorTemplateMq.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
namespace PARR.BLL.Domain.Mq
|
||||
{
|
||||
public class GeneratorTemplateMq
|
||||
{
|
||||
/// <summary>
|
||||
/// Id работы
|
||||
/// </summary>
|
||||
public Guid WorkId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Id приложения
|
||||
/// </summary>
|
||||
public Guid ApplicationId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Действие: create, deactivate
|
||||
/// </summary>
|
||||
public required string Action { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// ЭК, принимает регулярное выражение. Например: *, ВРТ-*-ДВС
|
||||
/// </summary>
|
||||
public required string Ek { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user