mirror of
https://github.com/andy-stack/vaultkeeper-ai.git
synced 2026-07-22 06:42:03 +00:00
11 lines
248 B
TypeScript
11 lines
248 B
TypeScript
|
|
export class PlanApprovalResponse {
|
||
|
|
|
||
|
|
public approved: boolean;
|
||
|
|
public suggestion: string;
|
||
|
|
|
||
|
|
public constructor(approved: boolean, suggestion: string = "") {
|
||
|
|
this.approved = approved;
|
||
|
|
this.suggestion = suggestion;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|