using MediatR;
using ColaFlow.Modules.IssueManagement.Domain.Events;
namespace ColaFlow.Modules.IssueManagement.Application.EventHandlers;
///
/// Handler for IssueUpdatedEvent
///
public sealed class IssueUpdatedEventHandler : INotificationHandler
{
public Task Handle(IssueUpdatedEvent notification, CancellationToken cancellationToken)
{
// Domain event handling logic
return Task.CompletedTask;
}
}