21 lines
355 B
TypeScript
21 lines
355 B
TypeScript
export interface Country {
|
|
name?: string;
|
|
code?: string;
|
|
}
|
|
|
|
export interface Representative {
|
|
name?: string;
|
|
image?: string;
|
|
}
|
|
|
|
export interface Customer {
|
|
id?: number;
|
|
name?: string;
|
|
country?: Country;
|
|
company?: string;
|
|
date?: string;
|
|
status?: string;
|
|
activity?: number;
|
|
representative?: Representative;
|
|
}
|