mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-04 21:17:36 +08:00
14 lines
346 B
C#
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; }
|
|||
|
}
|
|||
|
}
|