ng-implementation/my-workspace/projects/sae-lib/chatbot/bot-talks/bot-talks.ts
2025-08-08 10:57:00 +02:00

17 lines
506 B
TypeScript

import {Component} from '@angular/core';
@Component({
selector: 'sae-bot-talks',
imports: [],
templateUrl: './bot-talks.html',
styleUrl: './bot-talks.css'
})
export class BotTalks {
public message = 'I found useful document(s) which can help to answer to this question ! Check if these documents are applied to similar cases';
public links: any = [
{
title: 'Refusal notice :',
label: 'DMP-00051341: Avis de refus',
url: 'https://www.cipherbliss.com/fake-link',
}]
}