-
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f76228b
commit ecbaa7d
Showing
6 changed files
with
117 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
export interface InstrumentConfigurationProperties { | ||
type?: string; | ||
description?: string; | ||
} | ||
|
||
class InstrumentConfiguration { | ||
type?: string; | ||
|
||
description?: string; | ||
|
||
constructor(instrumentConfiguration: Partial<InstrumentConfigurationProperties> = {}) { | ||
this.type = instrumentConfiguration.type; | ||
this.description = instrumentConfiguration.description; | ||
} | ||
} | ||
|
||
export default InstrumentConfiguration; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
export interface UserConfigurationProperties { | ||
name?: string; | ||
fullname?: string; | ||
} | ||
|
||
class UserConfiguration { | ||
name?: string; | ||
|
||
fullname?: string; | ||
|
||
constructor(userConfiguration: Partial<UserConfigurationProperties> = {}) { | ||
this.name = userConfiguration.name; | ||
this.fullname = userConfiguration.fullname; | ||
} | ||
} | ||
|
||
export default UserConfiguration; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters