using Microsoft.AspNetCore.Http; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YD_WeChatApplet.Commons.Dto { public class ResourceFileDto { public IFormFile File { get; set; } public int ResourceTypeId { get; set; } } }