
export class JwtBundle {
    private keys: any[]; // Representing the JWT keys

    constructor(keys: any[]) {
        this.keys = keys;
    }
}
