devbug/app/models/upload/File.model.js

15 lines
287 B
JavaScript
Raw Normal View History

2019-06-21 22:01:34 +00:00
/*
* File Model
* -------------------------------------------------------------
* Put some description here!
*/
const File = {
schema: {
original_name: String,
new_name: String,
mime: String,
type: String,
},
2019-06-21 22:01:34 +00:00
}
module.exports = exports = File