mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2026-03-10 22:41:45 +00:00
10 lines
173 B
TypeScript
10 lines
173 B
TypeScript
export interface INeoleapHeaderRequest {
|
|
RequestHeader: {
|
|
Version: string;
|
|
MsgUid: string;
|
|
Source: 'ZOD';
|
|
ServiceId: string;
|
|
ReqDateTime: Date;
|
|
};
|
|
}
|