feat: implement camera login functionality and related API endpoints

This commit is contained in:
2025-10-25 08:53:51 +03:30
parent ca6638d6a3
commit 026d8da74a
5 changed files with 291 additions and 2 deletions

View File

@@ -66,4 +66,11 @@ public interface IAccountApplication
public bool CheckExistClientAccount(string userName);
List<AccountViewModel> GetAdminAccountsNew();
void CameraLogin(CameraLoginRequest request);
}
public class CameraLoginRequest
{
public string UserName { get; set; }
public string Password { get; set; }
}