mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 01:11:52 +08:00
17 lines
368 B
C#
17 lines
368 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public partial class FormValidationMessageItem
|
|
{
|
|
[Parameter]
|
|
public string Message { get; set; }
|
|
|
|
[Parameter]
|
|
public IReadOnlyDictionary<string, object> AdditionalAttributes { get; set; }
|
|
}
|
|
}
|