namespace Yavsc.Api.Client.Dtos; /// /// Wire format for GET /api/circle/{id}/members. /// /// Mirrors the server-side /// Yavsc.Blogs.Controllers.CircleMemberDto. Intentionally /// stops short of the Email field that /// carries — the circle /// membership UI only needs a name and an avatar to render the /// list. If the future ACL UI wants contact details, it can /// fall back to 's other /// endpoints rather than widening this shape. /// public sealed class CircleMemberDto { public string Id { get; set; } = string.Empty; public string UserName { get; set; } = string.Empty; public string? FullName { get; set; } public string? Avatar { get; set; } }