Sign in
eclipse
/
openk-usermodules
/
org.eclipse.openk-usermodules.elogbookFE
/
b563399539846c492ec088300270ccdfb143f683
/
.
/
src
/
app
/
common-components
/
multiselect-dropdown
/
multiselect.model.ts
blob: c7f790dac7d8b57f6a5c1f0ff1ceecb9a706f2ea [
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
;
}
}