using System; using System.Collections.Generic; namespace Knot.Modules.Identity.Application.Friends; public record FriendDto( Guid Id, string Username, string DisplayName, string? Avatar, bool IsOnline, DateTime LastSeenAt, Guid FriendshipId );