15 lines
276 B
C#
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; }
|
|
|
|
}
|