import {Entity, model, property} from '@loopback/repository'; @model() export class RevokedToken extends Entity { @property({ type: 'string', id: true, required: true, }) token: string; constructor(data?: Partial) { super(data); } }