Add 'from' field to MetaInfo

This commit is contained in:
haad
2016-02-09 10:32:11 +01:00
parent aaeb33efd9
commit 8b905c2bda

View File

@@ -1,9 +1,10 @@
'use strict';
class MetaInfo {
constructor(type, size, ts) {
constructor(type, size, from, ts) {
this.type = type;
this.size = size;
this.from = from;
this.ts = ts;
}
}