10 lines
281 B
C#
10 lines
281 B
C#
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace DeepDrftPublic.Client.Controls.AudioPlayerBar;
|
|
|
|
public partial class PlayerWindowControls : ComponentBase
|
|
{
|
|
[Parameter] public EventCallback OnMinimize { get; set; }
|
|
[Parameter] public EventCallback OnClose { get; set; }
|
|
}
|