mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-02 20:17:58 +08:00
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; }
|
|
}
|
|
}
|