X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=src%2Fmodels%2FCommonModel.ts;h=80a49b803164c9e2fb55d8aa99637ee74010a459;hb=refs%2Fchanges%2F37%2F11937%2F1;hp=7b51e9e121e9968a84cd79959bb9acb3cffc7f0d;hpb=f2ae5462f9c1d6b7a649eb389c5a4c990501b5c4;p=osm%2FNG-UI.git diff --git a/src/models/CommonModel.ts b/src/models/CommonModel.ts index 7b51e9e..80a49b8 100644 --- a/src/models/CommonModel.ts +++ b/src/models/CommonModel.ts @@ -43,7 +43,8 @@ export enum CONSTANTNUMBER { paginationDefaultValue = 10, splitLongitude = 1, splitLatitude = 2, - timeOutDefaultSeconds = 5 + timeOutDefaultSeconds = 5, + oneGB = 1024 } /** * handle count @enum @@ -205,7 +206,8 @@ export const VIM_TYPES: TYPESECTION[] = [ { value: 'vmware', title: 'VMware vCD' }, { value: 'openvim', title: 'OpenVIM' }, { value: 'opennebula', title: 'OpenNebula' }, - { value: 'azure', title: 'Azure' } + { value: 'azure', title: 'Azure' }, + { value: 'dummy', title: 'Dummy' } ]; /** Constants of the SDN Types */ export const SDN_TYPES: TYPESECTION[] = [ @@ -333,3 +335,8 @@ export interface LOGINPARAMS { username?: string; password?: string; } +/** Interface for the LABELVALUE */ +export interface LABELVALUE { + label: string; + value: string; +}