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