mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 17:31:42 +08:00
16 lines
275 B
C#
16 lines
275 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace AntDesign
|
|||
|
{
|
|||
|
public class ModalLocale
|
|||
|
{
|
|||
|
public string OkText { get; set; }
|
|||
|
|
|||
|
public string CancelText { get; set; }
|
|||
|
|
|||
|
public string JustOkText { get; set; }
|
|||
|
}
|
|||
|
}
|