Files
annotations/Azaion.Common/DTO/ApiCredentials.cs
T
Alex Bezdieniezhnykh 60519461a1 rework to have only 1 exe!
2024-12-04 20:51:26 +02:00

7 lines
207 B
C#

namespace Azaion.Common.DTO;
public class ApiCredentials(string email, string password) : EventArgs
{
public string Email { get; set; } = email;
public string Password { get; set; } = password;
}