mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 20:17:00 +02:00
12 lines
286 B
JavaScript
12 lines
286 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import Model, { attr } from '@ember-data/model';
|
|
export default class VersionHistoryModel extends Model {
|
|
@attr('string') version;
|
|
@attr('string') previousVersion;
|
|
@attr('string') timestampInstalled;
|
|
}
|