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.
 
 

62 lines
3.4 KiB

namespace Znyc.CloudCar.Model.Dtos.User
{
/// <summary>
/// 添加微信用户信息输入实体
/// </summary>
public class WxUnifyUserAddInput
{
/// <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>
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“AvatarUrl”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
public string AvatarUrl { get; set; }
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“AvatarUrl”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
/// <summary>
/// 手机号
/// </summary>
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“Phone”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
public string Phone { get; set; }
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“Phone”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
/// <summary>
/// 性别(0-男/1-女)
/// </summary>
public int Gender { get; set; }
/// <summary>
/// 国家
/// </summary>
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“Country”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
public string Country { get; set; }
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“Country”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
/// <summary>
/// 省份
/// </summary>
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“Province”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
public string Province { get; set; }
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“Province”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
/// <summary>
/// 城市
/// </summary>
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“City”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
public string City { get; set; }
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“City”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
/// <summary>
/// 语种
/// </summary>
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“Language”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
public string Language { get; set; }
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“Language”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
}
}