12 lines
255 B
C#
12 lines
255 B
C#
namespace GreadyPoang.Services;
|
|
|
|
public class PopupEventHub : IPopupEventHub
|
|
{
|
|
public event EventHandler? InfoPopupCloseRequested;
|
|
|
|
public void RaiseInfoPopupClose()
|
|
{
|
|
InfoPopupCloseRequested?.Invoke(this, EventArgs.Empty);
|
|
}
|
|
}
|