blob: 5b6756d27cdc582764406224f4064dd3be55af10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
import { Resource } from 'globunet-angular/core/models/api/resource';
export class Repository extends Resource {
name: string;
ip: string;
port: number;
password: string;
configurationpath: string;
adminpath: string;
pxepath: string;
description: string;
info: any;
constructor() {
super();
this.name = '';
this.ip = '';
this.port = 0;
this.password = '';
this.configurationpath = '';
this.adminpath = '';
this.pxepath = '';
this.description = '';
}
}
|