mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 09:21:24 +08:00
20 lines
379 B
C#
20 lines
379 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace AntDesign
|
|||
|
{
|
|||
|
public class UploadLocale
|
|||
|
{
|
|||
|
public string Uploading { get; set; }
|
|||
|
|
|||
|
public string RemoveFile { get; set; }
|
|||
|
|
|||
|
public string UploadError { get; set; }
|
|||
|
|
|||
|
public string PreviewFile { get; set; }
|
|||
|
|
|||
|
public string DownloadFile { get; set; }
|
|||
|
}
|
|||
|
}
|