update reference model datatype (include identifier model)
This commit is contained in:
parent
1435bbf53a
commit
d09d4adb48
|
@ -0,0 +1,8 @@
|
|||
import {CodableConceptModel} from './codable-concept-model';
|
||||
|
||||
export interface IdentifierModel {
|
||||
use: string
|
||||
type?: CodableConceptModel
|
||||
system?: string
|
||||
value?: string
|
||||
}
|
|
@ -1,4 +1,7 @@
|
|||
import {IdentifierModel} from './identifier-model';
|
||||
|
||||
export interface ReferenceModel {
|
||||
reference: string
|
||||
display?: string
|
||||
identifier?: IdentifierModel
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue