forked from ddrilling/asb_cloud_front
9 lines
177 B
TypeScript
9 lines
177 B
TypeScript
|
/* istanbul ignore file */
|
||
|
/* tslint:disable */
|
||
|
/* eslint-disable */
|
||
|
|
||
|
export type CompanyDto = {
|
||
|
id?: number;
|
||
|
caption?: string | null;
|
||
|
companyType?: string | null;
|
||
|
}
|