Add registerNewKeyV2

This commit is contained in:
Loporrit
2025-08-08 02:06:32 +00:00
parent 8b77956ec8
commit b2f4453b79
2 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
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;
}