mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 21:56:31 +00:00
17 lines
396 B
C#
17 lines
396 B
C#
using System.Windows.Input;
|
|
using Azaion.Common.DTO;
|
|
using MediatR;
|
|
|
|
namespace Azaion.Annotator.DTO;
|
|
|
|
public class PlaybackControlEvent(PlaybackControlEnum playbackControlEnum) : INotification
|
|
{
|
|
public PlaybackControlEnum PlaybackControl { get; set; } = playbackControlEnum;
|
|
}
|
|
|
|
public class VolumeChangedEvent(int volume) : INotification
|
|
{
|
|
public int Volume { get; set; } = volume;
|
|
}
|
|
|