/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * ServerLocation model */ export type ServerLocationDTO = { /** * Location ID */ id?: string; /** * Location Name */ name?: string; /** * Location City */ city?: string; /** * Location Country */ country?: string; /** * Location Description */ description?: string; /** * Location Icon */ icon?: string; };