Broker implementation updated.

This commit is contained in:
2025-07-05 08:48:14 +02:00
parent 8735510dfc
commit 91a1f7aa61
22 changed files with 587 additions and 510 deletions

View File

@ -0,0 +1,12 @@
using MessengerBroker.Configuration.Model.Servers;
using System.Security.Claims;
namespace MessengerBroker.Models
{
public class CachedIdentity
{
public SlaveServer Server { get; set; }
public ClaimsPrincipal ClaimsPrincipal { get; set; }
}
}