13 lines
250 B
JavaScript
13 lines
250 B
JavaScript
|
/*
|
||
|
* File Model
|
||
|
* -------------------------------------------------------------
|
||
|
* Put some description here!
|
||
|
*/
|
||
|
const File = {
|
||
|
original_name: String,
|
||
|
new_name: String,
|
||
|
mime: String,
|
||
|
type: String,
|
||
|
}
|
||
|
|
||
|
module.exports = exports = File
|