UNPKG

@sourceloop/ctrl-plane-tenant-management-service

Version:

Tenant Management microservice for SaaS control plane

21 lines (17 loc) 351 B
import {Model, model, property} from '@loopback/repository'; @model() export class VerifyLeadResponseDTO extends Model { @property({ type: 'string', required: true, }) id: string; @property({ type: 'string', required: true, }) token: string; constructor(data?: Partial<VerifyLeadResponseDTO>) { super(data); } }