mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-02-19 10:46:56 +00:00
16 lines
445 B
TypeScript
16 lines
445 B
TypeScript
|
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;
|
||
|
}
|
||
|
}
|