15 lines
361 B
C#
15 lines
361 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 IHistoryInitiator Initiator { get; set; }
|
|
}
|
|
}
|