You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
546 B
24 lines
546 B
using AutoMapper;
|
|
using System;
|
|
using Znyc.Cloudcar.Admin.Security.Entitys;
|
|
|
|
namespace Znyc.Cloudcar.Admin.Security.Dtos
|
|
{
|
|
/// <summary>
|
|
/// 输入对象模型
|
|
/// </summary>
|
|
[AutoMap(typeof(UserOpenIdsEntity))]
|
|
[Serializable]
|
|
public class UserOpenIdsInputDto
|
|
{
|
|
/// <summary>
|
|
/// 设置或获取
|
|
/// </summary>
|
|
public string OpenIdType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设置或获取
|
|
/// </summary>
|
|
public string OpenId { get; set; }
|
|
}
|
|
}
|