blob: 6d411f201c887482a94458d95e61a1367943c46c (
plain)
1
2
3
4
5
6
7
8
|
import { Resource } from 'globunet-angular/core/models/api/resource';
import {SoftwareComponent} from './software-component';
export class SoftwareProfile extends Resource {
description = '';
comments = '';
public softwares: SoftwareComponent[] = [];
}
|