YD_XinWei.Api/Server/YD_XinWei.Commons/Dto/Open/AddWeBankUserFaceDto.cs
2025-10-30 13:00:35 +08:00

16 lines
331 B
C#

using Microsoft.AspNetCore.Http;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YD_XinWei.Commons.Dto.Open
{
public class AddWeBankUserFaceDto
{
public int UserId { get; set; }
public IFormFile PicUrlA { get; set; }
}
}