using Core.Annotations; using Core.Models.Eft.Common; using Core.Models.Eft.Common.Tables; using Core.Models.Eft.ItemEvent; using Core.Models.Eft.Quests; namespace Core.Controllers; [Injectable] public class RepeatableQuestController { // TODO public ItemEventRouterResponse ChangeRepeatableQuest(PmcData pmcData, RepeatableQuestChangeRequest info, string sessionId) { throw new NotImplementedException(); } public List GetClientRepeatableQuests(string sessionId) { throw new NotImplementedException(); } }