2026-04-14 12:01:49 +10:00
|
|
|
|
using PARR.Domain.Enums;
|
2025-12-19 14:06:44 +10:00
|
|
|
|
|
|
|
|
|
|
namespace PARR.API.Contracts.V1.Requests
|
|
|
|
|
|
{
|
|
|
|
|
|
public class MatchTemplatesRequest
|
|
|
|
|
|
{
|
|
|
|
|
|
public Guid ObjectId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public SyncTaskEntityTypeEnum EntityType { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public TemplateMatcherActionEnum Action { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|