14 lines
403 B
C#
14 lines
403 B
C#
namespace Core.Callbacks;
|
|
|
|
public class RepairCallbacks
|
|
{
|
|
public ItemEventRouterResponse TraderRepair(PmcData pmcData, TraderRepairActionDataRequest info, string sessionID)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public ItemEventRouterResponse Repair(PmcData pmcData, RepairActionDataRequest info, string sessionID)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |