12 files: 3 entry types (FriendEntryDto, FriendApplyEntryDto, PlayedTogetherEntryDto), 5 response wrappers, 4 request DTOs. All carry [MessagePackObject] + [Key] + [JsonPropertyName] per convention. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
12 lines
437 B
C#
12 lines
437 B
C#
using System.Text.Json.Serialization;
|
|
using MessagePack;
|
|
|
|
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Friend;
|
|
|
|
[MessagePackObject]
|
|
public sealed class ReceiveApplyInfoResponse
|
|
{
|
|
[JsonPropertyName("receive_applies")][Key("receive_applies")] public List<FriendApplyEntryDto> ReceiveApplies { get; set; } = new();
|
|
[JsonPropertyName("approve_apply_count")][Key("approve_apply_count")] public int ApproveApplyCount { get; set; }
|
|
}
|