2020-09-07 22:46:50 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace AntDesign
|
|
|
|
|
{
|
|
|
|
|
public class UploadLocale
|
|
|
|
|
{
|
2021-07-06 01:10:16 +08:00
|
|
|
|
public string Uploading { get; set; } = "Uploading...";
|
2020-09-07 22:46:50 +08:00
|
|
|
|
|
2021-07-06 01:10:16 +08:00
|
|
|
|
public string RemoveFile { get; set; } = "Remove file";
|
2020-09-07 22:46:50 +08:00
|
|
|
|
|
2021-07-06 01:10:16 +08:00
|
|
|
|
public string UploadError { get; set; } = "Upload error";
|
2020-09-07 22:46:50 +08:00
|
|
|
|
|
2021-07-06 01:10:16 +08:00
|
|
|
|
public string PreviewFile { get; set; } = "Preview file";
|
2020-09-07 22:46:50 +08:00
|
|
|
|
|
2021-07-06 01:10:16 +08:00
|
|
|
|
public string DownloadFile { get; set; } = "Download file";
|
2020-09-07 22:46:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|