You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace Tiobon.Core.Model.ViewModels;
|
|
|
|
public class UploadFileDto
|
|
{
|
|
//多文件
|
|
[Required]
|
|
public IFormFileCollection file { get; set; }
|
|
|
|
//单文件
|
|
//public IFormFile File { get; set; }
|
|
|
|
//其他数据
|
|
public string Foo { get; set; }
|
|
|
|
|
|
}
|
|
|