blob: 3683812809b1c6aa626e8d183d7438081b399e77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import { Resource } from 'globunet-angular/core/models/api/resource';
export class Repository extends Resource {
name: string;
ip: string;
password: string;
description: string;
info: any;
constructor() {
super();
this.name = '';
this.ip = '';
this.password = '';
this.description = '';
}
}
|