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
1.0 KiB
24 lines
1.0 KiB
2 years ago
|
namespace Znyc.CloudCar.Model.Dtos.User
|
||
|
{
|
||
|
public class WxUnifyUserOutput
|
||
|
{
|
||
|
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“UnionId”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
|
||
|
public string UnionId { get; set; }
|
||
|
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“UnionId”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
|
||
|
|
||
|
/// <summary>
|
||
|
/// 昵称
|
||
|
/// </summary>
|
||
|
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“NickName”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
|
||
|
public string NickName { get; set; }
|
||
|
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“NickName”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建时间
|
||
|
/// </summary>
|
||
|
public DateTime CreatedTime { get; set; }
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|