all files / blackbird/modules/utils/ File.js

33.33% Statements 2/6
100% Branches 0/0
0% Functions 0/1
33.33% Lines 2/6
1 2 3 4 5 6 7 8 9              
function File(properties) {
    this.path = properties.path;
    this.name = properties.name;
    this.type = properties.type;
    this.size = properties.size;
}
 
module.exports = File;