Files
GreadyPoang/GreadyPoang.Services/Services/Interfaces/IPopupEventHub.cs

9 lines
189 B
C#

namespace GreadyPoang.Services;
public interface IPopupEventHub
{
event EventHandler<PopupCloseEventArgs>? InfoPopupCloseRequested;
void RaiseInfoPopupClose(string popupId);
}