namespace DigitalData.Core.Abstractions.Security.Common; /// /// Represents a unique security context that identifies an issuer and an audience. /// public interface IUniqueSecurityContext { /// /// Gets the issuer identifier for this security context. /// /// /// The issuer typically represents the entity that issues a token or a cryptographic key. /// string Issuer { get; } /// /// Gets the audience identifier for this security context. /// /// /// The audience typically represents the intended recipient or target of a token or cryptographic operation. /// string Audience { get; } }