mirror of
https://github.com/Hopiu/postal.js.git
synced 2026-05-03 21:04:42 +00:00
5 lines
195 B
JavaScript
5 lines
195 B
JavaScript
|
|
var CapturedMessageBatch = function(batchId, description, messages) {
|
||
|
|
this.batchId = "";
|
||
|
|
this.description = description || "Captured Message Batch";
|
||
|
|
this.messages = messages || [];
|
||
|
|
};
|