Files
psp_panel/src/app/domains/pos/models/pos.io.ts
T

19 lines
304 B
TypeScript
Raw Normal View History

2026-03-18 13:35:57 +03:30
export interface IPosInfoRawResponse {
name: true;
complex: {
id: string;
name: string;
tax_id: string;
};
businessActivity: {
id: string;
name: string;
};
guild: {
id: string;
name: string;
};
}
export interface IPosInfoResponse extends IPosInfoRawResponse {}