using System.Collections.Generic;
using Microsoft.AspNetCore.Components;
namespace WtmBlazorUtils
{
public class WTComponent : ComponentBase
{
///
/// 获得/设置 用户自定义属性
///
[Parameter(CaptureUnmatchedValues = true)]
public IDictionary AdditionalAttributes { get; set; }
}
}