Add createWithIdentV2 (.well-known stapling)

This commit is contained in:
Loporrit
2025-06-28 13:35:26 +00:00
parent fef2365280
commit 4e4b2dab17
2 changed files with 13 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
using MareSynchronos.API.Data;
using MessagePack;
namespace MareSynchronos.API.Dto;
[MessagePackObject(keyAsPropertyName: true)]
public record AuthReplyDto
{
public string Token { get; set; } = string.Empty;
public string? WellKnown { get; set; }
}