ant-design-blazor/components/calendar/CalendarHeaderRenderCallback.cs
笨木头 cf959decf9 feat: add calendar (#176)
* feat: refactor datePicker, add Calendar(basic)

* feat: add calendar and demos

* fix: timePicker format error

* fix: release comments

* refactor: replace @bind-Value with Value

* refactor: replace @bind-Value with Value

* fix: conflit
2020-06-03 10:24:16 +08:00

14 lines
346 B
C#

using System;
using Microsoft.AspNetCore.Components;
namespace AntDesign
{
public class CalendarHeaderRenderArgs
{
public DateTime Value { get; set; }
public string Type { get; set; }
public EventCallback<DateTime> OnChange { get; set; }
public EventCallback<string> OnTypeChange { get; set; }
}
}