package aplp.backend.web.common.security;
import java.time.Instant;
public record JwtClaims(String subject, Instant issuedAt, Instant expiration) {
}