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

9 lines
133 B
TypeScript

export interface GateResponseEntity {
code: number;
message: string;
}
export interface GateMasterEntity {
codes: string[];
}