14 lines
359 B
C#
14 lines
359 B
C#
using PARR.Common.Domain;
|
|
using PARR.Constants;
|
|
|
|
namespace PARR.BLL.Domain.Mq
|
|
{
|
|
public class TemplateMatcherMq
|
|
{
|
|
public Guid Id { get; set; }
|
|
public SyncTaskEntityTypeEnum EntityType { get; set; }
|
|
public TemplateMatcherActionEnum Action { get; set; }
|
|
public required HistoryInitiator Initiator { get; set; }
|
|
}
|
|
}
|