9 lines
352 B
C#
9 lines
352 B
C#
namespace Thalos.DAL.Grpc;
|
|
|
|
/// <summary>
|
|
/// Defines minimal gRPC contract shape for identity token dal adapter translation.
|
|
/// </summary>
|
|
/// <param name="SubjectId">Identity subject identifier.</param>
|
|
/// <param name="TenantId">Tenant scope identifier.</param>
|
|
public sealed record IdentityTokenDalGrpcContract(string SubjectId, string TenantId);
|