Очистка мусора

This commit is contained in:
Халимов Рустам
2026-03-15 21:36:49 +03:00
parent c14999d319
commit 893c9f2316
424 changed files with 689 additions and 493340 deletions
@@ -0,0 +1,9 @@
namespace Knot.Shared.Kernel;
public record UserInfo(Guid Id, string Username, string DisplayName, string? Avatar);
public interface IUserDisplayNameProvider
{
Task<string> GetDisplayNameAsync(Guid userId, CancellationToken ct = default);
Task<UserInfo?> GetUserInfoAsync(Guid userId, CancellationToken ct = default);
}