namespace ColaFlow.Modules.Mcp.Application.DTOs.Notifications;
///
/// Notification sent when a new PendingChange is created
///
public sealed record PendingChangeCreatedNotification : PendingChangeNotification
{
///
/// Type of entity being changed (Epic, Story, Task, etc.)
///
public required string EntityType { get; init; }
///
/// Operation being performed (CREATE, UPDATE, DELETE)
///
public required string Operation { get; init; }
///
/// Summary of what will be changed
///
public required string Summary { get; init; }
}