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>
13 lines
550 B
C#
13 lines
550 B
C#
using System.Text.Json.Serialization;
|
|
using MessagePack;
|
|
|
|
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Friend;
|
|
|
|
[MessagePackObject]
|
|
public sealed class SendApplyInfoResponse
|
|
{
|
|
[JsonPropertyName("send_applies")][Key("send_applies")] public List<FriendApplyEntryDto> SendApplies { get; set; } = new();
|
|
[JsonPropertyName("remaining_apply_count")][Key("remaining_apply_count")] public int RemainingApplyCount { get; set; }
|
|
[JsonPropertyName("send_apply_max_count")][Key("send_apply_max_count")] public int SendApplyMaxCount { get; set; }
|
|
}
|