27 lines
614 B
C#
27 lines
614 B
C#
using Core.Models.Eft.HttpResponse;
|
|
using Core.Models.Eft.ItemEvent;
|
|
|
|
namespace Core.Callbacks;
|
|
|
|
public class ItemEventCallbacks
|
|
{
|
|
public ItemEventCallbacks()
|
|
{
|
|
|
|
}
|
|
|
|
public async Task<GetBodyResponseData<ItemEventRouterResponse>> HandleEvents(string url, ItemEventRouterRequest info, string sessionID)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public bool IsCriticalError(List<Warning> warnings)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public int GetErrorCode(List<Warning> warnings)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |