mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-02 12:07:44 +08:00
1c90ee0333
* fix: fix invalid parameter "StrokeWidth" * feat(module: upload): Classic file upload 经典模式文件上传功能 * fix( module: upload): fix Ext attribute, delete 'done' file function * docs(module: upload): Demo and doc * fix (file: interop.ts): Indent changed to 2 characters * fix: menu * fix: delete md files * fix: docs * feat (module: upload): DefaultFileList * refactor: clean code Co-authored-by: ElderJames <shunjiey@hotmail.com>
14 lines
188 B
C#
14 lines
188 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public enum UploadState
|
|
{
|
|
Success = 0,
|
|
Fail,
|
|
Uploading
|
|
}
|
|
}
|