You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

host-status.view-model.ts 281B

123456789101112
  1. import {StatusEnumViewModel} from './status-enum.view-model';
  2. export class HostStatusViewModel {
  3. ip: string;
  4. hostname: string;
  5. times: number[];
  6. timesMin: number;
  7. timesAvg: number;
  8. timesMax: number;
  9. timesLost: number;
  10. status: StatusEnumViewModel;
  11. }