ant-design-blazor/components/core/JsInterop/DomEventSubscription.cs

21 lines
443 B
C#
Raw Normal View History

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