interface ResponseData { education: string; idCard: string; name: string; personId: string; selectStatus: boolean; sequence: number; } interface ResponseOrganiz { firstName: string; idCard: string; lastName: string; name: string; position: string; prefixId: string; profileId: string; unit: string; } interface ResponseCopyOrder { emailChannel: boolean; idCard: string; inboxChannel: boolean; name: string; personalId: string; position: string; selectStatus: boolean; sequence: number; unit: string; } interface DataCopyOrder { personalId: string; name: string; idCard: string; position: string; unit: string; send: string; mutiselect: number[]; } export type { ResponseData, ResponseOrganiz, ResponseCopyOrder, DataCopyOrder };