Очистка мусора
This commit is contained in:
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user