Uecko_ERP/apps/server/archive/contexts/customer-billing/presentation/dto/customers.response.dto.ts

28 lines
436 B
TypeScript
Raw Normal View History

2025-02-24 19:00:28 +00:00
export interface IListCustomersResponseDTO {
id: string;
reference: string;
2025-08-25 17:42:56 +00:00
is_companyr: boolean;
2025-02-24 19:00:28 +00:00
name: string;
trade_name: string;
tin: string;
street: string;
city: string;
state: string;
postal_code: string;
country: string;
email: string;
phone: string;
fax: string;
website: string;
legal_record: string;
default_tax: number;
status: string;
lang_code: string;
currency_code: string;
}