mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 01:11:52 +08:00
77af5a3dc7
Co-authored-by: James Yeung <shunjiey@hotmail.com>
19 lines
366 B
C#
19 lines
366 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AntDesign.JsInterop
|
|
{
|
|
internal class DomEventSubscription
|
|
{
|
|
internal Delegate Delegate { get; set; }
|
|
|
|
public DomEventSubscription(Delegate @delegate)
|
|
{
|
|
Delegate = @delegate;
|
|
}
|
|
}
|
|
}
|