mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-25 00:25:03 +08:00
Summary: Moved events into metadata. Removed a lot of code Test Plan: todo Reviewers: juan, bengotow Reviewed By: bengotow Differential Revision: https://phab.nylas.com/D2866
11 lines
279 B
JavaScript
11 lines
279 B
JavaScript
import {Utils} from 'nylas-exports'
|
|
|
|
export default class Proposal {
|
|
constructor(args = {}) {
|
|
this.id = Utils.generateFakeServerId();
|
|
Object.assign(this, args);
|
|
|
|
// This field is used by edgehill-server to lookup the proposals.
|
|
this.proposalId = this.id;
|
|
}
|
|
}
|