filer/src/directory-entry.js

9 lines
167 B
JavaScript
Raw Normal View History

2014-03-18 16:29:20 +00:00
define(['src/constants'], function(Constants) {
return function DirectoryEntry(id, type) {
this.id = id;
this.type = type || Constants.MODE_FILE;
};
});