Files
SnowcloakServer/MareAPI/MareSynchronosAPI/Dto/Account/RegisterReplyV2Dto.cs
Eauldane b21d2a685e Initial
2025-08-22 11:55:35 +01:00

11 lines
304 B
C#

using MessagePack;
namespace MareSynchronos.API.Dto.Account;
[MessagePackObject(keyAsPropertyName: true)]
public record RegisterReplyV2Dto
{
public bool Success { get; set; } = false;
public string ErrorMessage { get; set; } = string.Empty;
public string UID { get; set; } = string.Empty;
}