dnet45/modules/uoa-repository-dashboard-gui/trunk/app/domain/oa-description.ts @ 50247
1 |
|
---|---|
2 |
/* copied from omtd-platform git repository */
|
3 |
|
4 |
export class Description { |
5 |
desc : string; |
6 |
label : string; |
7 |
mandatory : boolean; |
8 |
recommended : boolean; |
9 |
}
|
10 |
|
11 |
export let baseUrlDesc = { |
12 |
desc: 'Base Url', |
13 |
label: 'Base OAI-PMH URL (*)', |
14 |
mandatory: true, |
15 |
recommended: false |
16 |
};
|