argos/dmp-frontend/src/app/entities/model/param.ts

11 lines
146 B
TypeScript

import { Injectable } from '@angular/core';
@Injectable()
export class Param {
key: string;
value: string;
constructor(){
}
}