2021-07-22 10:16:55 +05:00
|
|
|
/* istanbul ignore file */
|
|
|
|
/* tslint:disable */
|
|
|
|
/* eslint-disable */
|
|
|
|
|
|
|
|
export type CompanyDto = {
|
|
|
|
id?: number;
|
|
|
|
caption?: string | null;
|
2021-08-31 18:06:48 +05:00
|
|
|
companyTypeCaption?: string | null;
|
2021-07-22 10:16:55 +05:00
|
|
|
}
|