16 lines
263 B
TypeScript
16 lines
263 B
TypeScript
// using for priority and infectionType
|
|
export interface Lookup {
|
|
id:number;
|
|
codeId:string;
|
|
description:string;
|
|
|
|
}
|
|
|
|
export interface LookupEdit {
|
|
id:number;
|
|
codeId:string;
|
|
description:string;
|
|
active:boolean;
|
|
type:string;
|
|
|
|
} |