github.com/hernad/nomad@v1.6.112/ui/app/models/job-dispatch.js (about)

     1  /**
     2   * Copyright (c) HashiCorp, Inc.
     3   * SPDX-License-Identifier: MPL-2.0
     4   */
     5  
     6  import Model from '@ember-data/model';
     7  import { attr } from '@ember-data/model';
     8  
     9  export default class JobDispatch extends Model {
    10    @attr() index;
    11    @attr() jobCreateIndex;
    12    @attr() evalCreateIndex;
    13    @attr() evalID;
    14    @attr() dispatchedJobID;
    15  }