mirror of
https://github.com/kemko/nomad.git
synced 2026-01-04 09:25:46 +03:00
16 lines
327 B
JavaScript
16 lines
327 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Model from '@ember-data/model';
|
|
import { attr } from '@ember-data/model';
|
|
|
|
export default class JobDispatch extends Model {
|
|
@attr() index;
|
|
@attr() jobCreateIndex;
|
|
@attr() evalCreateIndex;
|
|
@attr() evalID;
|
|
@attr() dispatchedJobID;
|
|
}
|