Add whitelisting service + update the jwt valid audience

This commit is contained in:
2025-11-07 19:38:33 +07:00
parent 5578d272fa
commit 21110cd771
17 changed files with 2575 additions and 7 deletions

View File

@@ -0,0 +1,15 @@
namespace Managing.Domain.Whitelist;
public class WhitelistAccount
{
public int Id { get; set; }
public required string PrivyId { get; set; }
public DateTime PrivyCreationDate { get; set; }
public required string EmbeddedWallet { get; set; }
public string? ExternalEthereumAccount { get; set; }
public string? TwitterAccount { get; set; }
public bool IsWhitelisted { get; set; } = false;
public DateTime CreatedAt { get; set; }
public DateTime? UpdatedAt { get; set; }
}