8 lines
153 B
C#
8 lines
153 B
C#
namespace GreadyPoang.Services;
|
|
|
|
public interface IPopupEventHub
|
|
{
|
|
event EventHandler? InfoPopupCloseRequested;
|
|
|
|
void RaiseInfoPopupClose();
|
|
} |