Files

9 lines
189 B
C#

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