26 lines
411 B
TypeScript
26 lines
411 B
TypeScript
export interface StatusListItem {
|
|
id: string;
|
|
name: string;
|
|
statusorder: string;
|
|
color: string;
|
|
isdefault: string;
|
|
}
|
|
|
|
export interface SourceListItem {
|
|
id: string;
|
|
name: string;
|
|
}
|
|
|
|
export interface CountryListItem {
|
|
country_id: string;
|
|
iso2: string;
|
|
short_name: string;
|
|
long_name: string;
|
|
iso3: string;
|
|
numcode: string;
|
|
un_member: string;
|
|
calling_code: string;
|
|
cctld: string;
|
|
}
|
|
|