import {model, Model, property} from '@loopback/repository'; @model() export class CheckInContentCard extends Model { @property() checkInLogId?: number; @property() cardType: string; @property() cardPosition: number; @property() latestSelfiContent?: object; @property() latestSelfieQuote?: string; @property() dailyQuote?: string; @property() latestTwoSelfies?: object; @property() lastLoggedDate?: Date; }