namespace Luna.Identity.Abstractions; /// /// A short-lived code used to link a new channel to an existing user. /// Generated on a trusted channel (e.g., web), confirmed from the channel being linked. /// public record PairingCode( string Code, string ChannelType, string UserId, DateTimeOffset CreatedAt, TimeSpan TimeToLive);