48 lines
1 KiB
TypeScript
48 lines
1 KiB
TypeScript
interface Address {
|
|
currentAddress: string;
|
|
currentDistrictId: string;
|
|
currentProvinceId: string;
|
|
currentSubDistrictId: string;
|
|
currentZipCode: string;
|
|
id: string;
|
|
registrationAddress: string;
|
|
registrationDistrictId: string;
|
|
registrationProvinceId: string;
|
|
registrationSubDistrictId: string;
|
|
registrationZipCode: string;
|
|
}
|
|
interface Provinces {
|
|
createdAt: string;
|
|
createdFullName: string;
|
|
id: string;
|
|
lastUpdateFullName: string;
|
|
lastUpdatedAt: string;
|
|
name: string;
|
|
}
|
|
|
|
interface Districts {
|
|
createdAt: string;
|
|
createdFullName: string;
|
|
createdUserId: string;
|
|
id: string;
|
|
lastUpdateFullName: string;
|
|
lastUpdateUserId: string;
|
|
lastUpdatedAt: string;
|
|
name: string;
|
|
provinceId: string;
|
|
}
|
|
|
|
interface SubDistricts {
|
|
createdAt: string;
|
|
createdFullName: string;
|
|
createdUserId: string;
|
|
districtId: string;
|
|
id: string;
|
|
lastUpdateFullName: string;
|
|
lastUpdateUserId: string;
|
|
lastUpdatedAt: string;
|
|
name: string;
|
|
zipCode: string;
|
|
}
|
|
|
|
export type { Address, Provinces, Districts, SubDistricts };
|