mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-14 08:51:27 +08:00
15 lines
347 B
C#
15 lines
347 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public class TextLocale
|
|
{
|
|
public string Edit { get; set; } = "Edit";
|
|
public string Copy { get; set; } = "Copy";
|
|
public string Copied { get; set; } = "Copied";
|
|
public string Expand { get; set; } = "Expand";
|
|
}
|
|
}
|