targo-backend/src/customer-support/dtos/address.dto.ts

16 lines
344 B
TypeScript

export class Address {
id: string;
account_id: string;
civic_number: string;
street: string;
suite: string;
city: string;
province: string;
country: string;
postal_code: string;
constacts: string[];
devices: string[];
services: string[];
technicalTickets: number[];
is_primary: boolean;
}