mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-14 17:01:18 +08:00
14 lines
252 B
C#
14 lines
252 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public class PopconfirmLocale
|
|
{
|
|
public string CancelText { get; set; } = "OK";
|
|
|
|
public string OkText { get; set; } = "Cancel";
|
|
}
|
|
}
|