Repair controller

This commit is contained in:
Cj
2025-01-07 01:41:07 -05:00
parent d9aa0c4f42
commit 99ae3147fe
+34 -1
View File
@@ -1,6 +1,39 @@
using Core.Models.Eft.Common;
namespace Core.Controllers;
public class RepairController
{
// TODO
/// <summary>
/// Handle TraderRepair event
/// Repair with trader
/// </summary>
/// <param name="sessionId">session id</param>
/// <param name="body">endpoint request data</param>
/// <param name="pmcData">player profile</param>
/// <returns>item event router action</returns>
public ItemEventRouterResponse TraderRepair(
string sessionId,
TraderRepairActionDataRequest body,
PmcData pmcData)
{
throw new NotImplementedException();
}
/// <summary>
/// Handle Repair event
/// Repair with repair kit
/// </summary>
/// <param name="sessionId">session id</param>
/// <param name="body">endpoint request data</param>
/// <param name="pmcData">player profile</param>
/// <returns></returns>
/// <exception cref="NotImplementedException"></exception>
public ItemEventRouterResponse RepairWithKit(
string sessionId,
RepairActionDataRequest body,
PmcData pmcData)
{
throw new NotImplementedException();
}
}