ant-design-blazor/components/popconfirm/PopconfirmLocale.cs

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";
}
}