Files
2024-02-03 21:47:32 +00:00

15 lines
276 B
C#

using CommunityToolkit.Mvvm.Input;
namespace Hyperbar.Widget.MediaController.Windows;
public interface IMediaButtonViewModel :
IObservableViewModel
{
IRelayCommand? InvokeCommand { get; set; }
string? Button { get; set; }
string? State { get; set; }
}