Files
GreadyPoang/GreadyPoang.Services/Services/PopupClosingEventArgs.cs

12 lines
207 B
C#

namespace GreadyPoang.Services;
public class PopupCloseEventArgs : EventArgs
{
public string PopupId { get; }
public PopupCloseEventArgs(string popupId)
{
PopupId = popupId;
}
}