refactor(IAuthSenderHandler): rename subject input to name.

This commit is contained in:
Developer 02
2025-03-03 16:09:15 +01:00
parent cb6ec8b5e6
commit 4062fe750a
3 changed files with 8 additions and 8 deletions

View File

@@ -2,5 +2,5 @@
public interface IAuthSenderHandler
{
Task SendKeyAsync(string topic, string key);
Task SendKeyAsync(string name, string key);
}