using Core.Models.Eft.HttpResponse; using Core.Models.Eft.ItemEvent; namespace Core.Callbacks; public class ItemEventCallbacks { public ItemEventCallbacks() { } public async Task> HandleEvents(string url, ItemEventRouterRequest info, string sessionID) { throw new NotImplementedException(); } public bool IsCriticalError(List warnings) { throw new NotImplementedException(); } public int GetErrorCode(List warnings) { throw new NotImplementedException(); } }