import {Model, property} from '@loopback/repository'; export class AppointmentStatusModel extends Model{ @property({ type: 'number', required: true, }) status: number; @property({ type: 'string', required: true, jsonSchema: { maxLength: 1000, }, }) note: string; @property({ type: 'string', jsonSchema: { maxLength: 60, }, }) title?: string; constructor(data?: Partial) { super(data); } }