Files
SPT-Server-Build/Core/Callbacks/ItemEventCallbacks.cs
T
2025-01-07 12:51:59 +00:00

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();
}
}