2026-05-29 23:29:31 +03:30
|
|
|
namespace FlatRender.IdentitySvc.Models.Requests;
|
|
|
|
|
|
|
|
|
|
public record UpdateUserRequest(
|
|
|
|
|
string? FullName,
|
|
|
|
|
string? Slogan,
|
|
|
|
|
string? AboutMe,
|
|
|
|
|
string? CompanyName,
|
|
|
|
|
string? WebsiteName,
|
|
|
|
|
DateOnly? BirthDate,
|
|
|
|
|
string? Gender,
|
|
|
|
|
bool? EmailTellMe,
|
|
|
|
|
bool? SmsTellMe,
|
|
|
|
|
bool? PushTellMe,
|
2026-06-05 00:34:25 +03:30
|
|
|
bool? TelegramTellMe,
|
|
|
|
|
string? CountryCode = null,
|
|
|
|
|
string? NationalCode = null,
|
|
|
|
|
string? MethodOfIntroduction = null
|
2026-05-29 23:29:31 +03:30
|
|
|
);
|
|
|
|
|
|
|
|
|
|
public record SetAvatarRequest(Guid? AvatarId, string? AvatarUrl);
|
|
|
|
|
|
|
|
|
|
public record BanUserRequest(string Reason, DateTime? UnblockDate);
|