Uecko_ERP/apps/server/archive/contexts/contacts/presentation/dto/contacts.response.dto.ts

28 lines
439 B
TypeScript
Raw Normal View History

2025-02-25 17:47:42 +00:00
export interface IListContactsResponseDTO {
2025-02-20 18:55:24 +00:00
id: string;
2025-02-25 17:47:42 +00:00
reference: string;
2025-02-20 18:55:24 +00:00
2025-08-25 17:42:56 +00:00
is_companyr: boolean;
2025-02-20 18:55:24 +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;
2025-09-18 11:17:18 +00:00
language_code: string;
2025-02-20 18:55:24 +00:00
currency_code: string;
}