Skip to content

Commit

Permalink
update reference model datatype (include identifier model)
Browse files Browse the repository at this point in the history
  • Loading branch information
AnalogJ committed Oct 5, 2023
1 parent 1435bbf commit d09d4ad
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
8 changes: 8 additions & 0 deletions frontend/src/lib/models/datatypes/identifier-model.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import {CodableConceptModel} from './codable-concept-model';

export interface IdentifierModel {
use: string
type?: CodableConceptModel
system?: string
value?: string
}
3 changes: 3 additions & 0 deletions frontend/src/lib/models/datatypes/reference-model.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import {IdentifierModel} from './identifier-model';

export interface ReferenceModel {
reference: string
display?: string
identifier?: IdentifierModel
}

0 comments on commit d09d4ad

Please # to comment.