2025-06-06 14:57:20 +08:00

16 lines
332 B
C#

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