15 lines
219 B
TypeScript
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: '',
|
|
}
|
|
}
|