Sign in
eclipse
/
gerrit
/
openk-usermodules
/
org.eclipse.openk-usermodules.elogbookFE
/
d02c15a32075303c43e4f84a63519ddfd763b89e
/
.
/
src
/
app
/
common-components
/
multiselect-dropdown
/
multiselect.model.ts
blob: 27a4ce1222d47c27e67e2b279ccdc46abd489491 [
file
] [
log
] [
blame
]
export
class
ListItem
{
id
:
Number
;
itemName
:
String
}
export
class
MyException
{
status
:
number
;
body
:
any
;
constructor
(
status
:
number
,
body
:
any
)
{
this
.
status
=
status
;
this
.
body
=
body
;
}
}