hrms-mgt/src/modules/04_registryNew/interface/response/Address.ts

16 lines
455 B
TypeScript
Raw Normal View History

interface ResponseObject {
id: string;
registrationAddress: string | null;
registrationProvinceId: string | null;
registrationDistrictId: string | null;
registrationSubDistrictId: string | null;
registrationZipCode: string | null;
currentAddress: string | null;
currentProvinceId: string | null;
currentDistrictId: string | null;
currentSubDistrictId: string | null;
currentZipCode: string | null;
}
export type { ResponseObject };