Projekt

Obecné

Profil

Stáhnout (177 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 c349bab3 Lukáš Vlček
using Core.Entities;
2
using Models.Authentication;
3
4
namespace Core.Services;
5
6
public interface IAuthService
7
{
8 8c45ccb0 hrubyjar
    public LoginResponse? Index(string username, string password);
9 c349bab3 Lukáš Vlček
}