server-master/srcs/WingsAPI.Communication/Auth/IHardwareIdService.cs
2026-02-10 18:21:30 +01:00

13 lines
No EOL
393 B
C#

using System.Collections.Generic;
using System.Threading.Tasks;
namespace WingsAPI.Communication.Auth
{
public interface IHardwareIdService
{
Task<bool> SynchronizeWithDbAsync(IEnumerable<BlacklistedHwidDto> dtos);
Task<bool> CanLogin(string hardwareId);
Task RegisterHardwareId(string hardwareId);
Task UnregisterHardwareId(string hardwareId);
}
}