ant-design-blazor/components/core/JsInterop/DomEventSubscription.cs
Brian Ding 62c84aa84f fix(module: slider): cannot slide (#653)
* feat: deserialize event listner args

* fix(module: slider): update ts method

Co-authored-by: James Yeung <shunjiey@hotmail.com>
2020-09-28 16:44:11 +08:00

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;
}
}
}