13 lines
205 B
TypeScript
13 lines
205 B
TypeScript
import { Injectable } from '@angular/core';
|
|
|
|
@Injectable()
|
|
export class UntilityHandlerService {
|
|
|
|
public ShowLoadingPanel: boolean;
|
|
|
|
constructor() {
|
|
this.ShowLoadingPanel = false;
|
|
}
|
|
|
|
}
|