Projekt

Obecné

Profil

Stáhnout (377 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
import { Component, OnInit } from '@angular/core';
2

    
3
@Component({
4
  selector: 'app-about-dialog',
5
  templateUrl: './about-dialog.component.html',
6
  styleUrls: ['./about-dialog.component.css']
7
})
8
export class AboutDialogComponent implements OnInit {
9

    
10
  appVersionFE = '1.0.1';
11

    
12
  appVersionBE = '1.0.1';
13

    
14
  solrVersion = '8.5.0';
15

    
16
  constructor() { }
17

    
18
  ngOnInit(): void {
19
  }
20
}
(4-4/4)