mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 16:46:31 +00:00
make python app load a bit eariler, making startup a bit faster
This commit is contained in:
@@ -1,7 +1,16 @@
|
||||
namespace Azaion.CommonSecurity.DTO;
|
||||
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!;
|
||||
}
|
||||
Reference in New Issue
Block a user