using Microsoft.AspNetCore.Http; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OpenAuth.App { public class UploadExcelReq { public string tableName { get; set; } public IFormFile file { get; set; } } }