Files
simrsx-fe/app/models/ethnic.ts
Munawwirul Jamal 3eb9dde21d Dev cleaning (#106)
2025-10-08 00:03:36 +07:00

15 lines
219 B
TypeScript

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