1
0
2025-05-21 11:20:11 +08:00

14 lines
297 B
C#

using Flawless.Communication.Shared;
namespace Flawless.Communication.Request;
public struct UserInfoModifyResponse
{
public string? NickName { get; set; }
public int Gender { get; set; }
public string? Bio { get; set; }
public bool? PublicEmail { get; set; }
}