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

8 lines
153 B
C#

namespace GreadyPoang.Services;
public interface IPopupEventHub
{
event EventHandler? InfoPopupCloseRequested;
void RaiseInfoPopupClose();
}