Files
SVSimServer/SVSim.EmulatedEntrypoint/Models/Dtos/Responses/Card/CardProtectResponse.cs
2026-05-28 01:56:47 -04:00

13 lines
354 B
C#

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
{
}