mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2026-06-30 10:39:30 +01:00
Initial Move from Azure DevOps to GitHub
This commit is contained in:
@@ -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