X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=src%2Fmodels%2FCommonModel.ts;h=96d926d4c4d923b47d61c5efb8525ed56d148b0e;hb=4a7a542839c9ed7b6b6118c9faae0bc5d274494f;hp=7b51e9e121e9968a84cd79959bb9acb3cffc7f0d;hpb=2e02e7d676dc5a87e2d68437f30b6e41037ea7a4;p=osm%2FNG-UI.git diff --git a/src/models/CommonModel.ts b/src/models/CommonModel.ts index 7b51e9e..96d926d 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 @@ -333,3 +334,8 @@ export interface LOGINPARAMS { username?: string; password?: string; } +/** Interface for the LABELVALUE */ +export interface LABELVALUE { + label: string; + value: string; +}