Feature-5950: Management of quotas in VIM Account
[osm/NG-UI.git] / src / models / CommonModel.ts
index 7b51e9e..96d926d 100644 (file)
@@ -43,7 +43,8 @@ export enum CONSTANTNUMBER {
     paginationDefaultValue = 10,
     splitLongitude = 1,
     splitLatitude = 2,
-    timeOutDefaultSeconds = 5
+    timeOutDefaultSeconds = 5,
+    oneGB = 1024
 }
 /**
  * handle count @enum
@@ -333,3 +334,8 @@ export interface LOGINPARAMS {
     username?: string;
     password?: string;
 }
+/** Interface for the LABELVALUE */
+export interface LABELVALUE {
+    label: string;
+    value: string;
+}