// Copyright (c) 2023 Sourcefuse Technologies // // This software is released under the MIT License. // https://opensource.org/licenses/MIT import {model, property} from '@loopback/repository'; import {CoreModel} from '@sourceloop/core'; @model() export class SearchResult extends CoreModel { @property({ type: 'string', required: true, }) name: string; @property({ type: 'string', required: true, }) description: string; } export type SearchResultWithRelations = SearchResult;