open-vault/ui/app/models/clients/monthly.js

7 lines
243 B
JavaScript
Raw Normal View History

import Model, { attr } from '@ember-data/model';
export default class MonthlyModel extends Model {
@attr('string') responseTimestamp;
@attr('object') total; // total clients during the current/partial month
@attr('array') byNamespace;
}