Files
kredits-web/app/models/proposal.js
T

17 lines
261 B
JavaScript

import Ember from 'ember';
export default Ember.Object.extend({
id: null,
creatorAddress: null,
recipientAddress: null,
recipientName: null,
votesCount: null,
votesNeeded: null,
amount: null,
executed: null,
url: null,
ipfsHash: null
});