14 lines
302 B
C#
14 lines
302 B
C#
using Flawless.Communication.Shared;
|
|
|
|
namespace Flawless.Communication.Request;
|
|
|
|
public record UserInfoModifyResponse
|
|
{
|
|
public string? NickName { get; set; }
|
|
|
|
public UserSex? Gender { get; set; }
|
|
|
|
public string? Bio { get; set; }
|
|
|
|
public bool? PublicEmail { get; set; }
|
|
} |