Files
SVSimServer/SVSim.EmulatedEntrypoint/Models/Dtos/Friend/SendApplyRequest.cs
gamer147 a6e5c9f0bc 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>
2026-06-09 22:06:36 -04:00

12 lines
267 B
C#

using System.Text.Json.Serialization;
using MessagePack;
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Friend;
[MessagePackObject]
public sealed class SendApplyRequest
{
[JsonPropertyName("friend_id")][Key("friend_id")]
public int FriendId { get; set; }
}