mirror of
https://github.com/azaion/annotations.git
synced 2026-04-23 01:06:30 +00:00
13 lines
250 B
C#
13 lines
250 B
C#
using MessagePack;
|
|
|
|
namespace Azaion.LoaderUI;
|
|
|
|
[MessagePackObject]
|
|
public class ApiCredentials
|
|
{
|
|
[Key(nameof(Email))]
|
|
public string Email { get; set; } = null!;
|
|
|
|
[Key(nameof(Password))]
|
|
public string Password { get; set; } = null!;
|
|
} |