Start with the SKU recommendation screen (#11786)

This commit is contained in:
Amir Omidi
2020-08-18 12:44:58 -07:00
committed by GitHub
parent c4b524237c
commit 6153b7ad06
3 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the Source EULA. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
export interface Product {
name: string;
learnMoreLink: string | undefined;
icon: string;
}
export interface SKURecommendation {
product: Product;
migratableDatabases: number;
totalDatabases: number;
}