mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-04 21:17:36 +08:00
20 lines
469 B
C#
20 lines
469 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public class UploadLocale
|
|
{
|
|
public string Uploading { get; set; } = "Uploading...";
|
|
|
|
public string RemoveFile { get; set; } = "Remove file";
|
|
|
|
public string UploadError { get; set; } = "Upload error";
|
|
|
|
public string PreviewFile { get; set; } = "Preview file";
|
|
|
|
public string DownloadFile { get; set; } = "Download file";
|
|
}
|
|
}
|