using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BPA.KitChen.GroupMeal.Application.Service.SysService.Dtos
{
public class FileInputInfoDto
{
///
/// 文件夹
///
public string Directory { get; set; }
///
/// 文件名
///
public string FileExtension { get; set; }
public string Method { get; set; }
}
}