mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-14 08:51:27 +08:00
b4c8b52ba6
* fix: rangepicker parameter error * refactor: use EventCallback instead of Action * refactor: use EventCallback instead of Action * fix: rename the class name Co-authored-by: ElderJames <shunjiey@hotmail.com>
11 lines
194 B
C#
11 lines
194 B
C#
using System;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public class DateRangeChangedEventArgs
|
|
{
|
|
public DateTime?[] Dates { get; set; }
|
|
public string[] DateStrings { get; set; }
|
|
}
|
|
}
|