Files
SnowcloakClient/MareAPI/MareSynchronosAPI/Dto/Account/RegisterReplyDto.cs

12 lines
360 B
C#
Raw Normal View History

2025-08-22 02:19:48 +01:00
using MessagePack;
namespace MareSynchronos.API.Dto.Account;
[MessagePackObject(keyAsPropertyName: true)]
public record RegisterReplyDto
{
public bool Success { get; set; } = false;
public string ErrorMessage { get; set; } = string.Empty;
public string UID { get; set; } = string.Empty;
public string SecretKey { get; set; } = string.Empty;
}