16 lines
331 B
C#
Raw Permalink Normal View History

2025-10-30 13:00:35 +08:00
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; }
}
}