7 lines
107 B
TypeScript
7 lines
107 B
TypeScript
export interface IAcceptQuestRequestData
|
|
{
|
|
Action: "QuestAccept";
|
|
qid: string;
|
|
type: string;
|
|
}
|