2026-03-16 17:56:22 +03:30
|
|
|
import ISummary from '@/core/models/summary';
|
|
|
|
|
|
|
|
|
|
export interface IBusinessActivityRawResponse {
|
|
|
|
|
id: string;
|
|
|
|
|
name: string;
|
2026-04-23 20:59:48 +03:30
|
|
|
economic_code: string;
|
2026-03-16 17:56:22 +03:30
|
|
|
guild: ISummary;
|
|
|
|
|
}
|
|
|
|
|
export interface IBusinessActivityResponse extends IBusinessActivityRawResponse {}
|
|
|
|
|
|
|
|
|
|
export interface IBusinessActivityRequest {
|
2026-04-23 20:59:48 +03:30
|
|
|
economic_code: string;
|
2026-03-16 17:56:22 +03:30
|
|
|
name: string;
|
|
|
|
|
}
|