decide.nolog.cz/app/models/selection.js

19 lines
328 B
JavaScript
Raw Normal View History

import classic from 'ember-classic-decorator';
import { attr } from '@ember-data/model';
import Fragment from 'ember-data-model-fragments/fragment';
@classic
export default class Answer extends Fragment {
@attr('string')
type;
@attr('string')
label;
@attr('string')
labelTranslation;
@attr('string')
icon;
}