Implemented token fetch

This commit is contained in:
2026-08-16 14:21:34 +02:00
parent def73c3fa8
commit 8d77e99c75
9 changed files with 51 additions and 16 deletions
@@ -0,0 +1,12 @@
namespace PostFundManagement.Infrastructure.Configuration;
public sealed class MachineIdentity
{
public string? Authority { get; set; }
public string? Audience { get; set; }
public string? ClientId { get; set; }
public string? ClientSecret { get; set; }
}