namespace Socialize.Modules.Identity.Configuration; public record JwtOptions { public const string SectionName = "Authentication:Jwt"; public required TimeSpan Lifetime { get; init; } public required string Issuer { get; init; } public required string Audience { get; init; } public required string Key { get; init; } public TimeSpan RefreshTokenLifetime { get; init; } public bool RefreshTokenRequireRotation { get; init; } }