Files
simrsx-fe/app/models/antibiotic-src-category.ts
2025-12-01 01:50:39 +07:00

15 lines
249 B
TypeScript

import { type Base, genBase } from "./_base"
export interface AntibioticSrcCategory extends Base {
code: string
name: string
}
export function genDevice(): AntibioticSrcCategory {
return {
...genBase(),
code: '',
name: '',
}
}