mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-12-22 02:11:29 +00:00
Initial Move from Azure DevOps to GitHub
This commit is contained in:
15
src/Common/DeleteFeedback.ts
Normal file
15
src/Common/DeleteFeedback.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import * as DataModels from "../Contracts/DataModels";
|
||||
|
||||
export default class DeleteFeedback {
|
||||
subscriptionId: string;
|
||||
accountName: string;
|
||||
apiType: DataModels.ApiKind;
|
||||
feedback: string;
|
||||
|
||||
constructor(subscriptionId: string, accountName: string, apiType: DataModels.ApiKind, feedback: string) {
|
||||
this.subscriptionId = subscriptionId;
|
||||
this.accountName = accountName;
|
||||
this.apiType = apiType;
|
||||
this.feedback = feedback;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user