diff --git a/Server/src/Haru.Eft.Models.ts b/Server/src/Haru.Eft.Models.ts index 75639d9..3f86f1f 100644 --- a/Server/src/Haru.Eft.Models.ts +++ b/Server/src/Haru.Eft.Models.ts @@ -3,12 +3,14 @@ export class ResponseBody public err: number; public errcode: string | null; public data: T; + public crc: number; - public constructor(data: T, err: number = 0, errcode: string | null = null) + public constructor(data: T, crc: number = 0, err: number = 0, errcode: string | null = null) { this.err = err; this.errcode = errcode; this.data = data; + this.crc = crc; } }