pos-be/src/modules/gates/domain/entity/gate-request.entity.ts

12 lines
172 B
TypeScript

export interface GateScanEntity {
gate_id: string;
type: string;
uuid: string;
}
export interface GateLogEntity {
gate_id: string;
code: string;
error: any;
}