You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aConnect-UX/src/app/sms-gateway/sms-gateway.component.ts

19 lines
609 B
TypeScript

import { CommonModule } from '@angular/common';
import { Component } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { NgSelectComponent } from '@ng-select/ng-select';
import { TranslateModule } from '@ngx-translate/core';
import { selectedGatewayType } from '../utils/enums';
@Component({
selector: 'app-sms-gateway',
imports: [TranslateModule, FormsModule, CommonModule],
templateUrl: './sms-gateway.component.html',
styleUrl: './sms-gateway.component.scss'
})
export class SmsGatewayComponent {
selectedGateway: string = '';
selectedGatewayType = selectedGatewayType
}