feat(friend): wire DTOs for /friend/* endpoints
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>
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
using System.Text.Json.Serialization;
|
||||
using MessagePack;
|
||||
|
||||
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Friend;
|
||||
|
||||
[MessagePackObject]
|
||||
public sealed class ApplyIdRequest
|
||||
{
|
||||
[JsonPropertyName("apply_id")][Key("apply_id")]
|
||||
public int ApplyId { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user