LASAPlatform/OpenAuth.App/BaseApp/CreateTable/UploadExcelReq.cs

18 lines
316 B
C#

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; }
}
}