namespace Yavsc.Api.Client.Dtos; /// /// Wire format for GET /api/user-search. /// /// Mirrors the server-side /// Yavsc.Blogs.Controllers.UserSearchResultDto but stops /// short of any entity navigation properties. Only the fields /// a client address book needs (id, name, avatar, email) are /// included. /// /// Field names match the JSON the server emits (camelCase /// via the default policy), so /// no [JsonPropertyName] attributes are required. /// public sealed class UserSearchResultDto { public string Id { get; set; } = string.Empty; public string UserName { get; set; } = string.Empty; public string? FullName { get; set; } public string? Avatar { get; set; } public string? Email { get; set; } }