mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 21:46:30 +00:00
8b94837f18
fixes add visual validation border and validate functionality
10 lines
163 B
C#
10 lines
163 B
C#
using MediatR;
|
|
|
|
namespace Azaion.Annotator.DTO;
|
|
|
|
public class VolumeChangedEvent(int volume) : INotification
|
|
{
|
|
public int Volume { get; set; } = volume;
|
|
}
|
|
|