Update .gitignore to exclude log files and directories

This commit is contained in:
Oleksandr Bezdieniezhnykh
2026-04-06 07:06:54 +03:00
parent b970b2f593
commit 04a18804c5
2 changed files with 9 additions and 1 deletions
+7
View File
@@ -0,0 +1,7 @@
namespace Azaion.Common.Requests;
public class LoginRequest
{
public string Email { get; set; } = null!;
public string Password { get; set; } = null!;
}