7 lines
165 B
TypeScript
7 lines
165 B
TypeScript
export interface IndustryLookupDto {
|
|
id: string;
|
|
tenantId?: string | null;
|
|
industryCode?: string;
|
|
industryName: string;
|
|
parentIndustryId?: string | null;
|
|
} |