Files
GreadyPoang/GreadyPoang.Services/Services/Implements/PopupEventHub.cs

12 lines
255 B
C#

namespace GreadyPoang.Services;
public class PopupEventHub : IPopupEventHub
{
public event EventHandler? InfoPopupCloseRequested;
public void RaiseInfoPopupClose()
{
InfoPopupCloseRequested?.Invoke(this, EventArgs.Empty);
}
}