Mailspring/internal_packages/N1-Scheduler/lib/proposal.es6
Evan Morikawa 39c37e10b9 feat(calendar): add week view for quick scheduler
Summary: New Calendar

Test Plan: TODO

Reviewers: drew, juan, bengotow

Reviewed By: bengotow

Subscribers: jackie

Differential Revision: https://phab.nylas.com/D2767
2016-04-04 15:05:48 -07:00

12 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;
}
}