src/api/webApi/data/distributionCategories.interface.ts
Properties |
children |
children:
|
Type : Array<DistributionCategories>
|
code |
code:
|
Type : string
|
name |
name:
|
Type : string
|
export interface DistributionCategories {
name: string;
code: string;
children: Array<DistributionCategories>;
}