mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 13:37:35 +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
244 B
C#
14 lines
244 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public class UploadInfo
|
|
{
|
|
public UploadFileItem File { get; set; }
|
|
|
|
public List<UploadFileItem> FileList { get; set; }
|
|
}
|
|
}
|