mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 05:27:37 +08:00
62c84aa84f
* feat: deserialize event listner args * fix(module: slider): update ts method Co-authored-by: James Yeung <shunjiey@hotmail.com>
21 lines
443 B
C#
21 lines
443 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; }
|
|
internal Type Type { get; set; }
|
|
|
|
public DomEventSubscription(Delegate @delegate, Type type)
|
|
{
|
|
Delegate = @delegate;
|
|
Type = type;
|
|
}
|
|
}
|
|
}
|