This commit is contained in:
Халимов Рустам
2026-03-19 00:59:01 +03:00
parent 900ca6f8b8
commit 59e0cf7667
142 changed files with 4557 additions and 2593 deletions
@@ -0,0 +1,14 @@
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
);