mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 22:06:30 +00:00
7 lines
215 B
C#
7 lines
215 B
C#
namespace Azaion.CommonSecurity.DTO;
|
|
|
|
public class ApiCredentials(string email, string password) : EventArgs
|
|
{
|
|
public string Email { get; set; } = email;
|
|
public string Password { get; set; } = password;
|
|
} |