Fix mediator

This commit is contained in:
2025-08-05 17:31:10 +07:00
parent 6c63b80f4a
commit 843239d187
9 changed files with 103 additions and 6 deletions

View File

@@ -11,4 +11,5 @@ public interface IUserService
Task<User> UpdateTelegramChannel(User user, string telegramChannel);
Task<User> GetUserByName(string name);
Task<User> GetUserByAgentName(string agentName);
Task<IEnumerable<User>> GetAllUsersAsync();
}