using MediatR; namespace Azaion.Annotator.DTO; public class VolumeChangedEvent(int volume) : INotification { public int Volume { get; set; } = volume; }