mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 21:56:31 +00:00
16 lines
384 B
C#
16 lines
384 B
C#
using MessagePack;
|
|
|
|
namespace Azaion.CommonSecurity.DTO;
|
|
|
|
[MessagePackObject]
|
|
public class ApiCredentials(string email, string password) : EventArgs
|
|
{
|
|
[Key(nameof(Email))]
|
|
public string Email { get; set; } = email;
|
|
|
|
[Key(nameof(Password))]
|
|
public string Password { get; set; } = password;
|
|
|
|
[Key(nameof(Folder))]
|
|
public string Folder { get; set; } = null!;
|
|
} |