9 lines
207 B
JavaScript
9 lines
207 B
JavaScript
|
import Model, { attr } from '@ember-data/model';
|
||
|
|
||
|
export default class Permission extends Model {
|
||
|
@attr('string') Resource;
|
||
|
@attr('string') Segment;
|
||
|
@attr('string') Access;
|
||
|
@attr('boolean') Allow;
|
||
|
}
|