12 lines
207 B
C#
12 lines
207 B
C#
namespace GreadyPoang.Services;
|
|
|
|
public class PopupCloseEventArgs : EventArgs
|
|
{
|
|
public string PopupId { get; }
|
|
|
|
public PopupCloseEventArgs(string popupId)
|
|
{
|
|
PopupId = popupId;
|
|
}
|
|
}
|