server-master/srcs/LoginServer/Auth/IClientVersionCheckingService.cs
2026-02-10 18:21:30 +01:00

13 lines
No EOL
319 B
C#

using System.Threading.Tasks;
namespace LoginServer.Auth
{
/// <summary>
/// Todo dedicated authoritative service
/// </summary>
public interface IClientVersionCheckingService
{
Task<bool> IsAuthorized(string sentHash);
Task<string> GetClientVersion(string sentHash);
}
}