global.ts 215 Bytes
export class GlobalService {
  resourceBaseUrl: string = "";
  hostURL: string = ""; 
  constructor() {
    this.hostURL = window.location.hostname;
    this.resourceBaseUrl = "http://192.168.84.242:97/User";
  }
}