using Core.Models.Eft.Common;
using Core.Models.Eft.ItemEvent;
using Core.Models.Eft.Repair;
namespace Core.Callbacks;
public class RepairCallbacks
{
public RepairCallbacks()
{
}
///
/// Handle TraderRepair event
/// use trader to repair item
///
///
///
///
///
///
public ItemEventRouterResponse TraderRepair(PmcData pmcData, TraderRepairActionDataRequest info, string sessionID)
{
throw new NotImplementedException();
}
///
/// Handle Repair event
/// Use repair kit to repair item
///
///
///
///
///
///
public ItemEventRouterResponse Repair(PmcData pmcData, RepairActionDataRequest info, string sessionID)
{
throw new NotImplementedException();
}
}