mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 01:11:52 +08:00
19 lines
373 B
C#
19 lines
373 B
C#
namespace AntDesign
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class ModalLocale
|
|
{
|
|
/// <summary>
|
|
/// OK button text
|
|
/// </summary>
|
|
public string OkText { get; set; } = "OK";
|
|
|
|
/// <summary>
|
|
/// Cancel button text
|
|
/// </summary>
|
|
public string CancelText { get; set; } = "Cancel";
|
|
}
|
|
}
|