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(); } /// /// Return true if the passed in list of warnings contains critical issues /// /// The list of warnings to check for critical errors /// /// public bool IsCriticalError(List warnings) { throw new NotImplementedException(); } public int GetErrorCode(List warnings) { throw new NotImplementedException(); } }