projects/web-mev/src/app/shared/models/file-type.ts
File types
These types are restricted to a set of common file formats.
Properties |
constructor(options: literal type)
|
||||||
|
Parameters :
|
| resource_type_description |
Type : string
|
| resource_type_key |
Type : string
|
| resource_type_title |
Type : string
|
export class FileType {
resource_type_key: string;
resource_type_title: string;
resource_type_description: string;
constructor(
options: {
resource_type_key?: string;
resource_type_title?: string;
resource_type_description?: string;
} = {}
) {
this.resource_type_key = options.resource_type_key;
this.resource_type_title = options.resource_type_title;
this.resource_type_description = options.resource_type_description;
}
}