Files
kredits-web/app/models/proposal.js
T
2018-04-08 02:01:10 +02:00

28 lines
464 B
JavaScript

import EmberObject from 'ember-object';
export default EmberObject.extend({
// Contract
id: null,
creatorAddress: null,
recipientId: null,
amount: null,
votesCount: null,
votesNeeded: null,
executed: null,
ipfsHash: null,
// IPFS
kind: null,
description: null,
details: {},
url: null,
ipfsData: '',
// Deprecated
recipientAddress: null,
recipientName: null,
recipientProfile: null,
// TODO: add contributor relation
});