16 lines
331 B
C#
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; }
|
|
}
|
|
}
|