HJ_Server/src/module/collection_task.ts
DESKTOP-15R5JU0\legu 97e070ea81 init
2023-11-17 12:02:12 +08:00

8 lines
160 B
TypeScript

import { taskType } from '../shared/protocols/task/type';
export type CollectionTask = taskType & {
/**玩家uid */
uid: string;
taskid: number
};