13 lines
No EOL
319 B
C#
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);
|
|
}
|
|
} |