ng-implementation/my-workspace/projects/sae-lib/chatbot/bot-talks/bot-talks.ts

18 lines
506 B
TypeScript
Raw Normal View History

2025-08-07 16:42:16 +02:00
import {Component} from '@angular/core';
@Component({
2025-08-08 10:57:00 +02:00
selector: 'sae-bot-talks',
2025-08-07 16:42:16 +02:00
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',
}]
}