controller(card): POST /card/protect

This commit is contained in:
gamer147
2026-05-28 01:56:47 -04:00
parent ecf819ca61
commit 1ee31c1689
3 changed files with 51 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
using MessagePack;
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Responses.Card;
/// <summary>
/// /card/protect response data — empty. The client just needs result_code=1 in the envelope's
/// data_headers; it mutates its own FavoriteCardList from its request-side knowledge.
/// </summary>
[MessagePackObject]
public class CardProtectResponse
{
}