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